Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvironmentAccountConnectionReference ¶
type EnvironmentAccountConnectionReference struct {
// The Arn of the EnvironmentAccountConnection resource.
EnvironmentAccountConnectionArn *string `field:"required" json:"environmentAccountConnectionArn" yaml:"environmentAccountConnectionArn"`
}
A reference to a EnvironmentAccountConnection 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"
environmentAccountConnectionReference := &EnvironmentAccountConnectionReference{
EnvironmentAccountConnectionArn: jsii.String("environmentAccountConnectionArn"),
}
type EnvironmentTemplateReference ¶
type EnvironmentTemplateReference struct {
// The Arn of the EnvironmentTemplate resource.
EnvironmentTemplateArn *string `field:"required" json:"environmentTemplateArn" yaml:"environmentTemplateArn"`
}
A reference to a EnvironmentTemplate 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"
environmentTemplateReference := &EnvironmentTemplateReference{
EnvironmentTemplateArn: jsii.String("environmentTemplateArn"),
}
type IEnvironmentAccountConnectionRef ¶
type IEnvironmentAccountConnectionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EnvironmentAccountConnection resource.
// Experimental.
EnvironmentAccountConnectionRef() *EnvironmentAccountConnectionReference
}
Indicates that this resource can be referenced as a EnvironmentAccountConnection. Experimental.
type IEnvironmentTemplateRef ¶
type IEnvironmentTemplateRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a EnvironmentTemplate resource.
// Experimental.
EnvironmentTemplateRef() *EnvironmentTemplateReference
}
Indicates that this resource can be referenced as a EnvironmentTemplate. Experimental.
type IServiceTemplateRef ¶
type IServiceTemplateRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ServiceTemplate resource.
// Experimental.
ServiceTemplateRef() *ServiceTemplateReference
}
Indicates that this resource can be referenced as a ServiceTemplate. Experimental.
type ServiceTemplateReference ¶
type ServiceTemplateReference struct {
// The Arn of the ServiceTemplate resource.
ServiceTemplateArn *string `field:"required" json:"serviceTemplateArn" yaml:"serviceTemplateArn"`
}
A reference to a ServiceTemplate 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"
serviceTemplateReference := &ServiceTemplateReference{
ServiceTemplateArn: jsii.String("serviceTemplateArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.