Documentation
¶
Index ¶
- type ApplicationReference
- type ConfigurationProfileReference
- type DeploymentReference
- type DeploymentStrategyReference
- type EnvironmentReference
- type ExtensionAssociationReference
- type ExtensionReference
- type HostedConfigurationVersionReference
- type IApplicationRef
- type IConfigurationProfileRef
- type IDeploymentRef
- type IDeploymentStrategyRef
- type IEnvironmentRef
- type IExtensionAssociationRef
- type IExtensionRef
- type IHostedConfigurationVersionRef
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationReference ¶
type ApplicationReference struct {
// The ApplicationId of the Application resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
}
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{
ApplicationId: jsii.String("applicationId"),
}
type ConfigurationProfileReference ¶
type ConfigurationProfileReference struct {
// The ApplicationId of the ConfigurationProfile resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
// The ConfigurationProfileId of the ConfigurationProfile resource.
ConfigurationProfileId *string `field:"required" json:"configurationProfileId" yaml:"configurationProfileId"`
}
A reference to a ConfigurationProfile 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"
configurationProfileReference := &ConfigurationProfileReference{
ApplicationId: jsii.String("applicationId"),
ConfigurationProfileId: jsii.String("configurationProfileId"),
}
type DeploymentReference ¶
type DeploymentReference struct {
// The ApplicationId of the Deployment resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
// The DeploymentNumber of the Deployment resource.
DeploymentNumber *string `field:"required" json:"deploymentNumber" yaml:"deploymentNumber"`
// The EnvironmentId of the Deployment resource.
EnvironmentId *string `field:"required" json:"environmentId" yaml:"environmentId"`
}
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"),
DeploymentNumber: jsii.String("deploymentNumber"),
EnvironmentId: jsii.String("environmentId"),
}
type DeploymentStrategyReference ¶
type DeploymentStrategyReference struct {
// The Id of the DeploymentStrategy resource.
DeploymentStrategyId *string `field:"required" json:"deploymentStrategyId" yaml:"deploymentStrategyId"`
}
A reference to a DeploymentStrategy 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"
deploymentStrategyReference := &DeploymentStrategyReference{
DeploymentStrategyId: jsii.String("deploymentStrategyId"),
}
type EnvironmentReference ¶
type EnvironmentReference struct {
// The ApplicationId of the Environment resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
// The EnvironmentId of the Environment resource.
EnvironmentId *string `field:"required" json:"environmentId" yaml:"environmentId"`
}
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{
ApplicationId: jsii.String("applicationId"),
EnvironmentId: jsii.String("environmentId"),
}
type ExtensionAssociationReference ¶
type ExtensionAssociationReference struct {
// The ARN of the ExtensionAssociation resource.
ExtensionAssociationArn *string `field:"required" json:"extensionAssociationArn" yaml:"extensionAssociationArn"`
// The Id of the ExtensionAssociation resource.
ExtensionAssociationId *string `field:"required" json:"extensionAssociationId" yaml:"extensionAssociationId"`
}
A reference to a ExtensionAssociation 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"
extensionAssociationReference := &ExtensionAssociationReference{
ExtensionAssociationArn: jsii.String("extensionAssociationArn"),
ExtensionAssociationId: jsii.String("extensionAssociationId"),
}
type ExtensionReference ¶
type ExtensionReference struct {
// The ARN of the Extension resource.
ExtensionArn *string `field:"required" json:"extensionArn" yaml:"extensionArn"`
// The Id of the Extension resource.
ExtensionId *string `field:"required" json:"extensionId" yaml:"extensionId"`
}
A reference to a Extension 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"
extensionReference := &ExtensionReference{
ExtensionArn: jsii.String("extensionArn"),
ExtensionId: jsii.String("extensionId"),
}
type HostedConfigurationVersionReference ¶
type HostedConfigurationVersionReference struct {
// The ApplicationId of the HostedConfigurationVersion resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
// The ConfigurationProfileId of the HostedConfigurationVersion resource.
ConfigurationProfileId *string `field:"required" json:"configurationProfileId" yaml:"configurationProfileId"`
// The VersionNumber of the HostedConfigurationVersion resource.
VersionNumber *string `field:"required" json:"versionNumber" yaml:"versionNumber"`
}
A reference to a HostedConfigurationVersion 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"
hostedConfigurationVersionReference := &HostedConfigurationVersionReference{
ApplicationId: jsii.String("applicationId"),
ConfigurationProfileId: jsii.String("configurationProfileId"),
VersionNumber: jsii.String("versionNumber"),
}
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 IConfigurationProfileRef ¶
type IConfigurationProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ConfigurationProfile resource.
// Experimental.
ConfigurationProfileRef() *ConfigurationProfileReference
}
Indicates that this resource can be referenced as a ConfigurationProfile. 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 IDeploymentStrategyRef ¶
type IDeploymentStrategyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DeploymentStrategy resource.
// Experimental.
DeploymentStrategyRef() *DeploymentStrategyReference
}
Indicates that this resource can be referenced as a DeploymentStrategy. 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.
type IExtensionAssociationRef ¶
type IExtensionAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ExtensionAssociation resource.
// Experimental.
ExtensionAssociationRef() *ExtensionAssociationReference
}
Indicates that this resource can be referenced as a ExtensionAssociation. Experimental.
type IExtensionRef ¶
type IExtensionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Extension resource.
// Experimental.
ExtensionRef() *ExtensionReference
}
Indicates that this resource can be referenced as a Extension. Experimental.
type IHostedConfigurationVersionRef ¶
type IHostedConfigurationVersionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a HostedConfigurationVersion resource.
// Experimental.
HostedConfigurationVersionRef() *HostedConfigurationVersionReference
}
Indicates that this resource can be referenced as a HostedConfigurationVersion. Experimental.
Source Files
¶
- ApplicationReference.go
- ConfigurationProfileReference.go
- DeploymentReference.go
- DeploymentStrategyReference.go
- EnvironmentReference.go
- ExtensionAssociationReference.go
- ExtensionReference.go
- HostedConfigurationVersionReference.go
- IApplicationRef.go
- IConfigurationProfileRef.go
- IDeploymentRef.go
- IDeploymentStrategyRef.go
- IEnvironmentRef.go
- IExtensionAssociationRef.go
- IExtensionRef.go
- IHostedConfigurationVersionRef.go
- main.go