Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationReference ¶
type ApplicationReference struct {
// The ApplicationName of the Application resource.
ApplicationName *string `field:"required" json:"applicationName" yaml:"applicationName"`
}
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{
ApplicationName: jsii.String("applicationName"),
}
type DeploymentConfigReference ¶
type DeploymentConfigReference struct {
// The DeploymentConfigName of the DeploymentConfig resource.
DeploymentConfigName *string `field:"required" json:"deploymentConfigName" yaml:"deploymentConfigName"`
}
A reference to a DeploymentConfig 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"
deploymentConfigReference := &DeploymentConfigReference{
DeploymentConfigName: jsii.String("deploymentConfigName"),
}
type DeploymentGroupReference ¶
type DeploymentGroupReference struct {
// The Id of the DeploymentGroup resource.
DeploymentGroupId *string `field:"required" json:"deploymentGroupId" yaml:"deploymentGroupId"`
}
A reference to a DeploymentGroup 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"
deploymentGroupReference := &DeploymentGroupReference{
DeploymentGroupId: jsii.String("deploymentGroupId"),
}
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 IDeploymentConfigRef ¶
type IDeploymentConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DeploymentConfig resource.
// Experimental.
DeploymentConfigRef() *DeploymentConfigReference
}
Indicates that this resource can be referenced as a DeploymentConfig. Experimental.
type IDeploymentGroupRef ¶
type IDeploymentGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DeploymentGroup resource.
// Experimental.
DeploymentGroupRef() *DeploymentGroupReference
}
Indicates that this resource can be referenced as a DeploymentGroup. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.