Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigurationSetEventDestinationReference ¶
type ConfigurationSetEventDestinationReference struct {
// The Id of the ConfigurationSetEventDestination resource.
ConfigurationSetEventDestinationId *string `field:"required" json:"configurationSetEventDestinationId" yaml:"configurationSetEventDestinationId"`
}
A reference to a ConfigurationSetEventDestination 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"
configurationSetEventDestinationReference := &ConfigurationSetEventDestinationReference{
ConfigurationSetEventDestinationId: jsii.String("configurationSetEventDestinationId"),
}
type ConfigurationSetReference ¶
type ConfigurationSetReference struct {
// The Id of the ConfigurationSet resource.
ConfigurationSetId *string `field:"required" json:"configurationSetId" yaml:"configurationSetId"`
}
A reference to a ConfigurationSet 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"
configurationSetReference := &ConfigurationSetReference{
ConfigurationSetId: jsii.String("configurationSetId"),
}
type DedicatedIpPoolReference ¶
type DedicatedIpPoolReference struct {
// The Id of the DedicatedIpPool resource.
DedicatedIpPoolId *string `field:"required" json:"dedicatedIpPoolId" yaml:"dedicatedIpPoolId"`
}
A reference to a DedicatedIpPool 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"
dedicatedIpPoolReference := &DedicatedIpPoolReference{
DedicatedIpPoolId: jsii.String("dedicatedIpPoolId"),
}
type IConfigurationSetEventDestinationRef ¶
type IConfigurationSetEventDestinationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConfigurationSetEventDestination resource.
// Experimental.
ConfigurationSetEventDestinationRef() *ConfigurationSetEventDestinationReference
}
Indicates that this resource can be referenced as a ConfigurationSetEventDestination. Experimental.
type IConfigurationSetRef ¶
type IConfigurationSetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConfigurationSet resource.
// Experimental.
ConfigurationSetRef() *ConfigurationSetReference
}
Indicates that this resource can be referenced as a ConfigurationSet. Experimental.
type IDedicatedIpPoolRef ¶
type IDedicatedIpPoolRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DedicatedIpPool resource.
// Experimental.
DedicatedIpPoolRef() *DedicatedIpPoolReference
}
Indicates that this resource can be referenced as a DedicatedIpPool. Experimental.
type IIdentityRef ¶
type IIdentityRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Identity resource.
// Experimental.
IdentityRef() *IdentityReference
}
Indicates that this resource can be referenced as a Identity. Experimental.
type IdentityReference ¶
type IdentityReference struct {
// The Id of the Identity resource.
IdentityId *string `field:"required" json:"identityId" yaml:"identityId"`
}
A reference to a Identity 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"
identityReference := &IdentityReference{
IdentityId: jsii.String("identityId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.