Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BrokerReference ¶
type BrokerReference struct {
// The ARN of the Broker resource.
BrokerArn *string `field:"required" json:"brokerArn" yaml:"brokerArn"`
// The Id of the Broker resource.
BrokerId *string `field:"required" json:"brokerId" yaml:"brokerId"`
}
A reference to a Broker 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"
brokerReference := &BrokerReference{
BrokerArn: jsii.String("brokerArn"),
BrokerId: jsii.String("brokerId"),
}
type ConfigurationAssociationReference ¶
type ConfigurationAssociationReference struct {
// The Id of the ConfigurationAssociation resource.
ConfigurationAssociationId *string `field:"required" json:"configurationAssociationId" yaml:"configurationAssociationId"`
}
A reference to a ConfigurationAssociation 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"
configurationAssociationReference := &ConfigurationAssociationReference{
ConfigurationAssociationId: jsii.String("configurationAssociationId"),
}
type ConfigurationReference ¶
type ConfigurationReference struct {
// The ARN of the Configuration resource.
ConfigurationArn *string `field:"required" json:"configurationArn" yaml:"configurationArn"`
// The Id of the Configuration resource.
ConfigurationId *string `field:"required" json:"configurationId" yaml:"configurationId"`
}
A reference to a Configuration 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"
configurationReference := &ConfigurationReference{
ConfigurationArn: jsii.String("configurationArn"),
ConfigurationId: jsii.String("configurationId"),
}
type IBrokerRef ¶
type IBrokerRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Broker resource.
// Experimental.
BrokerRef() *BrokerReference
}
Indicates that this resource can be referenced as a Broker. Experimental.
type IConfigurationAssociationRef ¶
type IConfigurationAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConfigurationAssociation resource.
// Experimental.
ConfigurationAssociationRef() *ConfigurationAssociationReference
}
Indicates that this resource can be referenced as a ConfigurationAssociation. Experimental.
type IConfigurationRef ¶
type IConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Configuration resource.
// Experimental.
ConfigurationRef() *ConfigurationReference
}
Indicates that this resource can be referenced as a Configuration. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.