Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationReference ¶
type ApplicationReference struct {
// The ApplicationArn of the Application resource.
ApplicationArn *string `field:"required" json:"applicationArn" yaml:"applicationArn"`
}
A reference to a Application 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"
applicationReference := &ApplicationReference{
ApplicationArn: jsii.String("applicationArn"),
}
type DeploymentReference ¶
type DeploymentReference struct {
// The ApplicationId of the Deployment resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
}
A reference to a Deployment 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"
deploymentReference := &DeploymentReference{
ApplicationId: jsii.String("applicationId"),
}
type EnvironmentReference ¶
type EnvironmentReference struct {
// The EnvironmentArn of the Environment resource.
EnvironmentArn *string `field:"required" json:"environmentArn" yaml:"environmentArn"`
}
A reference to a Environment 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"
environmentReference := &EnvironmentReference{
EnvironmentArn: jsii.String("environmentArn"),
}
type IApplicationRef ¶
type IApplicationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Application resource.
// Experimental.
ApplicationRef() *ApplicationReference
}
Indicates that this resource can be referenced as a Application. Experimental.
type IDeploymentRef ¶
type IDeploymentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Deployment resource.
// Experimental.
DeploymentRef() *DeploymentReference
}
Indicates that this resource can be referenced as a Deployment. Experimental.
type IEnvironmentRef ¶
type IEnvironmentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Environment resource.
// Experimental.
EnvironmentRef() *EnvironmentReference
}
Indicates that this resource can be referenced as a Environment. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.