Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AliasReference ¶
type AliasReference struct {
// The AliasName of the Alias resource.
AliasName *string `field:"required" json:"aliasName" yaml:"aliasName"`
}
A reference to a Alias 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"
aliasReference := &AliasReference{
AliasName: jsii.String("aliasName"),
}
type IAliasRef ¶
type IAliasRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Alias resource.
// Experimental.
AliasRef() *AliasReference
}
Indicates that this resource can be referenced as a Alias. Experimental.
type IKeyRef ¶
type IKeyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Key resource.
// Experimental.
KeyRef() *KeyReference
}
Indicates that this resource can be referenced as a Key. Experimental.
type KeyReference ¶
type KeyReference struct {
// The KeyIdentifier of the Key resource.
KeyIdentifier *string `field:"required" json:"keyIdentifier" yaml:"keyIdentifier"`
}
A reference to a Key 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"
keyReference := &KeyReference{
KeyIdentifier: jsii.String("keyIdentifier"),
}
Click to show internal directories.
Click to hide internal directories.