Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigReference ¶
type ConfigReference struct {
// The Arn of the Config resource.
ConfigArn *string `field:"required" json:"configArn" yaml:"configArn"`
}
A reference to a Config resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
configReference := &ConfigReference{
ConfigArn: jsii.String("configArn"),
}
type DataflowEndpointGroupReference ¶
type DataflowEndpointGroupReference struct {
// The ARN of the DataflowEndpointGroup resource.
DataflowEndpointGroupArn *string `field:"required" json:"dataflowEndpointGroupArn" yaml:"dataflowEndpointGroupArn"`
// The Id of the DataflowEndpointGroup resource.
DataflowEndpointGroupId *string `field:"required" json:"dataflowEndpointGroupId" yaml:"dataflowEndpointGroupId"`
}
A reference to a DataflowEndpointGroup resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
dataflowEndpointGroupReference := &DataflowEndpointGroupReference{
DataflowEndpointGroupArn: jsii.String("dataflowEndpointGroupArn"),
DataflowEndpointGroupId: jsii.String("dataflowEndpointGroupId"),
}
type IConfigRef ¶
type IConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Config resource.
// Experimental.
ConfigRef() *ConfigReference
}
Indicates that this resource can be referenced as a Config. Experimental.
type IDataflowEndpointGroupRef ¶
type IDataflowEndpointGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DataflowEndpointGroup resource.
// Experimental.
DataflowEndpointGroupRef() *DataflowEndpointGroupReference
}
Indicates that this resource can be referenced as a DataflowEndpointGroup. Experimental.
type IMissionProfileRef ¶
type IMissionProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MissionProfile resource.
// Experimental.
MissionProfileRef() *MissionProfileReference
}
Indicates that this resource can be referenced as a MissionProfile. Experimental.
type MissionProfileReference ¶
type MissionProfileReference struct {
// The Arn of the MissionProfile resource.
MissionProfileArn *string `field:"required" json:"missionProfileArn" yaml:"missionProfileArn"`
// The Id of the MissionProfile resource.
MissionProfileId *string `field:"required" json:"missionProfileId" yaml:"missionProfileId"`
}
A reference to a MissionProfile resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
missionProfileReference := &MissionProfileReference{
MissionProfileArn: jsii.String("missionProfileArn"),
MissionProfileId: jsii.String("missionProfileId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.