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 ApplicationVersionReference ¶
type ApplicationVersionReference struct {
// The ApplicationName of the ApplicationVersion resource.
ApplicationName *string `field:"required" json:"applicationName" yaml:"applicationName"`
// The Id of the ApplicationVersion resource.
ApplicationVersionId *string `field:"required" json:"applicationVersionId" yaml:"applicationVersionId"`
}
A reference to a ApplicationVersion 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"
applicationVersionReference := &ApplicationVersionReference{
ApplicationName: jsii.String("applicationName"),
ApplicationVersionId: jsii.String("applicationVersionId"),
}
type ConfigurationTemplateReference ¶
type ConfigurationTemplateReference struct {
// The ApplicationName of the ConfigurationTemplate resource.
ApplicationName *string `field:"required" json:"applicationName" yaml:"applicationName"`
// The TemplateName of the ConfigurationTemplate resource.
TemplateName *string `field:"required" json:"templateName" yaml:"templateName"`
}
A reference to a ConfigurationTemplate 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"
configurationTemplateReference := &ConfigurationTemplateReference{
ApplicationName: jsii.String("applicationName"),
TemplateName: jsii.String("templateName"),
}
type EnvironmentReference ¶
type EnvironmentReference struct {
// The EnvironmentName of the Environment resource.
EnvironmentName *string `field:"required" json:"environmentName" yaml:"environmentName"`
}
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{
EnvironmentName: jsii.String("environmentName"),
}
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 IApplicationVersionRef ¶
type IApplicationVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ApplicationVersion resource.
// Experimental.
ApplicationVersionRef() *ApplicationVersionReference
}
Indicates that this resource can be referenced as a ApplicationVersion. Experimental.
type IConfigurationTemplateRef ¶
type IConfigurationTemplateRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConfigurationTemplate resource.
// Experimental.
ConfigurationTemplateRef() *ConfigurationTemplateReference
}
Indicates that this resource can be referenced as a ConfigurationTemplate. 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.