Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppReference ¶
type AppReference struct {
// The Arn of the App resource.
AppArn *string `field:"required" json:"appArn" yaml:"appArn"`
}
A reference to a App 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"
appReference := &AppReference{
AppArn: jsii.String("appArn"),
}
type BranchReference ¶
type BranchReference struct {
// The Arn of the Branch resource.
BranchArn *string `field:"required" json:"branchArn" yaml:"branchArn"`
}
A reference to a Branch 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"
branchReference := &BranchReference{
BranchArn: jsii.String("branchArn"),
}
type DomainReference ¶
type DomainReference struct {
// The Arn of the Domain resource.
DomainArn *string `field:"required" json:"domainArn" yaml:"domainArn"`
}
A reference to a Domain 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"
domainReference := &DomainReference{
DomainArn: jsii.String("domainArn"),
}
type IAppRef ¶
type IAppRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a App resource.
// Experimental.
AppRef() *AppReference
}
Indicates that this resource can be referenced as a App. Experimental.
type IBranchRef ¶
type IBranchRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Branch resource.
// Experimental.
BranchRef() *BranchReference
}
Indicates that this resource can be referenced as a Branch. Experimental.
type IDomainRef ¶
type IDomainRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Domain resource.
// Experimental.
DomainRef() *DomainReference
}
Indicates that this resource can be referenced as a Domain. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.