Documentation ¶
Index ¶
- func CfnApplication_CFN_RESOURCE_TYPE_NAME() *string
- func CfnApplication_IsCfnElement(x interface{}) *bool
- func CfnApplication_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnApplication_IsConstruct(x interface{}) *bool
- func CfnEnvironment_CFN_RESOURCE_TYPE_NAME() *string
- func CfnEnvironment_IsCfnElement(x interface{}) *bool
- func CfnEnvironment_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnEnvironment_IsConstruct(x interface{}) *bool
- func NewCfnApplication_Override(c CfnApplication, scope awscdk.Construct, id *string, ...)
- func NewCfnEnvironment_Override(c CfnEnvironment, scope awscdk.Construct, id *string, ...)
- type CfnApplication
- type CfnApplicationProps
- type CfnApplication_DefinitionProperty
- type CfnEnvironment
- type CfnEnvironmentProps
- type CfnEnvironment_EfsStorageConfigurationProperty
- type CfnEnvironment_FsxStorageConfigurationProperty
- type CfnEnvironment_HighAvailabilityConfigProperty
- type CfnEnvironment_StorageConfigurationProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnApplication_CFN_RESOURCE_TYPE_NAME ¶
func CfnApplication_CFN_RESOURCE_TYPE_NAME() *string
func CfnApplication_IsCfnElement ¶
func CfnApplication_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.
func CfnApplication_IsCfnResource ¶
func CfnApplication_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnApplication_IsConstruct ¶
func CfnApplication_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct. Experimental.
func CfnEnvironment_CFN_RESOURCE_TYPE_NAME ¶
func CfnEnvironment_CFN_RESOURCE_TYPE_NAME() *string
func CfnEnvironment_IsCfnElement ¶
func CfnEnvironment_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.
func CfnEnvironment_IsCfnResource ¶
func CfnEnvironment_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnEnvironment_IsConstruct ¶
func CfnEnvironment_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct. Experimental.
func NewCfnApplication_Override ¶
func NewCfnApplication_Override(c CfnApplication, scope awscdk.Construct, id *string, props *CfnApplicationProps)
Create a new `AWS::M2::Application`.
func NewCfnEnvironment_Override ¶
func NewCfnEnvironment_Override(c CfnEnvironment, scope awscdk.Construct, id *string, props *CfnEnvironmentProps)
Create a new `AWS::M2::Environment`.
Types ¶
type CfnApplication ¶
type CfnApplication interface { awscdk.CfnResource awscdk.IInspectable // The Amazon Resource Name (ARN) of the application. AttrApplicationArn() *string // The identifier of the application. AttrApplicationId() *string // Options for this resource, such as condition, update policy etc. // Experimental. CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} // AWS resource type. // Experimental. CfnResourceType() *string // Returns: the stack trace of the point where this Resource was created from, sourced // from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most // node +internal+ entries filtered. // Experimental. CreationStack() *[]*string // The application definition for a particular application. You can specify either inline JSON or an Amazon S3 bucket location. // // For information about application definitions, see the [AWS Mainframe Modernization User Guide](https://docs.aws.amazon.com/m2/latest/userguide/applications-m2-definition.html) . Definition() interface{} SetDefinition(val interface{}) // The description of the application. Description() *string SetDescription(val *string) // The type of the target platform for this application. EngineType() *string SetEngineType(val *string) // The identifier of a customer managed key. KmsKeyId() *string SetKmsKeyId(val *string) // The logical ID for this CloudFormation stack element. // // The logical ID of the element // is calculated from the path of the resource node in the construct tree. // // To override this value, use `overrideLogicalId(newLogicalId)`. // // Returns: the logical ID as a stringified token. This value will only get // resolved during synthesis. // Experimental. LogicalId() *string // The name of the application. Name() *string SetName(val *string) // The construct tree node associated with this construct. // Experimental. Node() awscdk.ConstructNode // Return a string that will be resolved to a CloudFormation `{ Ref }` for this element. // // If, by any chance, the intrinsic reference of a resource is not a string, you could // coerce it to an IResolvable through `Lazy.any({ produce: resource.ref })`. // Experimental. Ref() *string // The stack in which this element is defined. // // CfnElements must be defined within a stack scope (directly or indirectly). // Experimental. Stack() awscdk.Stack // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . Tags() awscdk.TagManager // Return properties modified after initiation. // // Resources that expose mutable properties should override this function to // collect and return the properties object for this resource. // Experimental. UpdatedProperites() *map[string]interface{} // Syntactic sugar for `addOverride(path, undefined)`. // Experimental. AddDeletionOverride(path *string) // Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. // // This can be used for resources across stacks (or nested stack) boundaries // and the dependency will automatically be transferred to the relevant scope. // Experimental. AddDependsOn(target awscdk.CfnResource) // Add a value to the CloudFormation Resource Metadata. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html // // Note that this is a different set of metadata from CDK node metadata; this // metadata ends up in the stack template under the resource, whereas CDK // node metadata ends up in the Cloud Assembly. // // Experimental. AddMetadata(key *string, value interface{}) // Adds an override to the synthesized CloudFormation resource. // // To add a // property override, either use `addPropertyOverride` or prefix `path` with // "Properties." (i.e. `Properties.TopicName`). // // If the override is nested, separate each nested level using a dot (.) in the path parameter. // If there is an array as part of the nesting, specify the index in the path. // // To include a literal `.` in the property name, prefix with a `\`. In most // programming languages you will need to write this as `"\\."` because the // `\` itself will need to be escaped. // // For example, // “`typescript // cfnResource.addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute']); // cfnResource.addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE'); // “` // would add the overrides // “`json // "Properties": { // "GlobalSecondaryIndexes": [ // { // "Projection": { // "NonKeyAttributes": [ "myattribute" ] // ... // } // ... // }, // { // "ProjectionType": "INCLUDE" // ... // }, // ] // ... // } // “` // // The `value` argument to `addOverride` will not be processed or translated // in any way. Pass raw JSON values in here with the correct capitalization // for CloudFormation. If you pass CDK classes or structs, they will be // rendered with lowercased key names, and CloudFormation will reject the // template. // Experimental. AddOverride(path *string, value interface{}) // Adds an override that deletes the value of a property from the resource definition. // Experimental. AddPropertyDeletionOverride(propertyPath *string) // Adds an override to a resource property. // // Syntactic sugar for `addOverride("Properties.<...>", value)`. // Experimental. AddPropertyOverride(propertyPath *string, value interface{}) // Sets the deletion policy of the resource based on the removal policy specified. // // The Removal Policy controls what happens to this resource when it stops // being managed by CloudFormation, either because you've removed it from the // CDK application or because you've made a change that requires the resource // to be replaced. // // The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS // account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). // Experimental. ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) // Returns a token for an runtime attribute of this resource. // // Ideally, use generated attribute accessors (e.g. `resource.arn`), but this can be used for future compatibility // in case there is no generated attribute. // Experimental. GetAtt(attributeName *string) awscdk.Reference // Retrieve a value value from the CloudFormation Resource Metadata. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html // // Note that this is a different set of metadata from CDK node metadata; this // metadata ends up in the stack template under the resource, whereas CDK // node metadata ends up in the Cloud Assembly. // // Experimental. GetMetadata(key *string) interface{} // Examines the CloudFormation resource and discloses attributes. Inspect(inspector awscdk.TreeInspector) // Perform final modifications before synthesis. // // This method can be implemented by derived constructs in order to perform // final changes before synthesis. prepare() will be called after child // constructs have been prepared. // // This is an advanced framework feature. Only use this if you // understand the implications. // Experimental. OnPrepare() // Allows this construct to emit artifacts into the cloud assembly during synthesis. // // This method is usually implemented by framework-level constructs such as `Stack` and `Asset` // as they participate in synthesizing the cloud assembly. // Experimental. OnSynthesize(session constructs.ISynthesisSession) // Validate the current construct. // // This method can be implemented by derived constructs in order to perform // validation logic. It is called on all constructs before synthesis. // // Returns: An array of validation error messages, or an empty array if the construct is valid. // Experimental. OnValidate() *[]*string // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) // Perform final modifications before synthesis. // // This method can be implemented by derived constructs in order to perform // final changes before synthesis. prepare() will be called after child // constructs have been prepared. // // This is an advanced framework feature. Only use this if you // understand the implications. // Experimental. Prepare() RenderProperties(props *map[string]interface{}) *map[string]interface{} // Can be overridden by subclasses to determine if this resource will be rendered into the cloudformation template. // // Returns: `true` if the resource should be included or `false` is the resource // should be omitted. // Experimental. ShouldSynthesize() *bool // Allows this construct to emit artifacts into the cloud assembly during synthesis. // // This method is usually implemented by framework-level constructs such as `Stack` and `Asset` // as they participate in synthesizing the cloud assembly. // Experimental. Synthesize(session awscdk.ISynthesisSession) // Returns a string representation of this construct. // // Returns: a string representation of this resource. // Experimental. ToString() *string // Validate the current construct. // // This method can be implemented by derived constructs in order to perform // validation logic. It is called on all constructs before synthesis. // // Returns: An array of validation error messages, or an empty array if the construct is valid. // Experimental. Validate() *[]*string // Experimental. ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::M2::Application`.
Specifies a new application with given parameters. Requires an existing runtime environment and application definition file.
For information about application definitions, see the [AWS Mainframe Modernization User Guide](https://docs.aws.amazon.com/m2/latest/userguide/applications-m2-definition.html) .
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" cfnApplication := awscdk.Aws_m2.NewCfnApplication(this, jsii.String("MyCfnApplication"), &CfnApplicationProps{ Definition: &DefinitionProperty{ Content: jsii.String("content"), S3Location: jsii.String("s3Location"), }, EngineType: jsii.String("engineType"), Name: jsii.String("name"), // the properties below are optional Description: jsii.String("description"), KmsKeyId: jsii.String("kmsKeyId"), Tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, })
func NewCfnApplication ¶
func NewCfnApplication(scope awscdk.Construct, id *string, props *CfnApplicationProps) CfnApplication
Create a new `AWS::M2::Application`.
type CfnApplicationProps ¶
type CfnApplicationProps struct { // The application definition for a particular application. You can specify either inline JSON or an Amazon S3 bucket location. // // For information about application definitions, see the [AWS Mainframe Modernization User Guide](https://docs.aws.amazon.com/m2/latest/userguide/applications-m2-definition.html) . Definition interface{} `field:"required" json:"definition" yaml:"definition"` // The type of the target platform for this application. EngineType *string `field:"required" json:"engineType" yaml:"engineType"` // The name of the application. Name *string `field:"required" json:"name" yaml:"name"` // The description of the application. Description *string `field:"optional" json:"description" yaml:"description"` // The identifier of a customer managed key. KmsKeyId *string `field:"optional" json:"kmsKeyId" yaml:"kmsKeyId"` // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . Tags *map[string]*string `field:"optional" json:"tags" yaml:"tags"` }
Properties for defining a `CfnApplication`.
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" cfnApplicationProps := &CfnApplicationProps{ Definition: &DefinitionProperty{ Content: jsii.String("content"), S3Location: jsii.String("s3Location"), }, EngineType: jsii.String("engineType"), Name: jsii.String("name"), // the properties below are optional Description: jsii.String("description"), KmsKeyId: jsii.String("kmsKeyId"), Tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, }
type CfnApplication_DefinitionProperty ¶
type CfnApplication_DefinitionProperty struct { // The content of the application definition. // // This is a JSON object that contains the resource configuration/definitions that identify an application. Content *string `field:"optional" json:"content" yaml:"content"` // The S3 bucket that contains the application definition. S3Location *string `field:"optional" json:"s3Location" yaml:"s3Location"` }
The application definition for a particular application.
You can specify either inline JSON or an Amazon S3 bucket location.
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" definitionProperty := &DefinitionProperty{ Content: jsii.String("content"), S3Location: jsii.String("s3Location"), }
type CfnEnvironment ¶
type CfnEnvironment interface { awscdk.CfnResource awscdk.IInspectable // The Amazon Resource Name (ARN) of the runtime environment. AttrEnvironmentArn() *string // The unique identifier of the runtime environment. AttrEnvironmentId() *string // Options for this resource, such as condition, update policy etc. // Experimental. CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} // AWS resource type. // Experimental. CfnResourceType() *string // Returns: the stack trace of the point where this Resource was created from, sourced // from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most // node +internal+ entries filtered. // Experimental. CreationStack() *[]*string // The description of the runtime environment. Description() *string SetDescription(val *string) // The target platform for the runtime environment. EngineType() *string SetEngineType(val *string) // The version of the runtime engine. EngineVersion() *string SetEngineVersion(val *string) // Defines the details of a high availability configuration. HighAvailabilityConfig() interface{} SetHighAvailabilityConfig(val interface{}) // The instance type of the runtime environment. InstanceType() *string SetInstanceType(val *string) // The identifier of a customer managed key. KmsKeyId() *string SetKmsKeyId(val *string) // The logical ID for this CloudFormation stack element. // // The logical ID of the element // is calculated from the path of the resource node in the construct tree. // // To override this value, use `overrideLogicalId(newLogicalId)`. // // Returns: the logical ID as a stringified token. This value will only get // resolved during synthesis. // Experimental. LogicalId() *string // The name of the runtime environment. Name() *string SetName(val *string) // The construct tree node associated with this construct. // Experimental. Node() awscdk.ConstructNode // Configures the maintenance window you want for the runtime environment. // // If you do not provide a value, a random system-generated value will be assigned. PreferredMaintenanceWindow() *string SetPreferredMaintenanceWindow(val *string) // Specifies whether the runtime environment is publicly accessible. PubliclyAccessible() interface{} SetPubliclyAccessible(val interface{}) // Return a string that will be resolved to a CloudFormation `{ Ref }` for this element. // // If, by any chance, the intrinsic reference of a resource is not a string, you could // coerce it to an IResolvable through `Lazy.any({ produce: resource.ref })`. // Experimental. Ref() *string // The list of security groups for the VPC associated with this runtime environment. SecurityGroupIds() *[]*string SetSecurityGroupIds(val *[]*string) // The stack in which this element is defined. // // CfnElements must be defined within a stack scope (directly or indirectly). // Experimental. Stack() awscdk.Stack // Defines the storage configuration for a runtime environment. StorageConfigurations() interface{} SetStorageConfigurations(val interface{}) // The list of subnets associated with the VPC for this runtime environment. SubnetIds() *[]*string SetSubnetIds(val *[]*string) // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . Tags() awscdk.TagManager // Return properties modified after initiation. // // Resources that expose mutable properties should override this function to // collect and return the properties object for this resource. // Experimental. UpdatedProperites() *map[string]interface{} // Syntactic sugar for `addOverride(path, undefined)`. // Experimental. AddDeletionOverride(path *string) // Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. // // This can be used for resources across stacks (or nested stack) boundaries // and the dependency will automatically be transferred to the relevant scope. // Experimental. AddDependsOn(target awscdk.CfnResource) // Add a value to the CloudFormation Resource Metadata. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html // // Note that this is a different set of metadata from CDK node metadata; this // metadata ends up in the stack template under the resource, whereas CDK // node metadata ends up in the Cloud Assembly. // // Experimental. AddMetadata(key *string, value interface{}) // Adds an override to the synthesized CloudFormation resource. // // To add a // property override, either use `addPropertyOverride` or prefix `path` with // "Properties." (i.e. `Properties.TopicName`). // // If the override is nested, separate each nested level using a dot (.) in the path parameter. // If there is an array as part of the nesting, specify the index in the path. // // To include a literal `.` in the property name, prefix with a `\`. In most // programming languages you will need to write this as `"\\."` because the // `\` itself will need to be escaped. // // For example, // “`typescript // cfnResource.addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute']); // cfnResource.addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE'); // “` // would add the overrides // “`json // "Properties": { // "GlobalSecondaryIndexes": [ // { // "Projection": { // "NonKeyAttributes": [ "myattribute" ] // ... // } // ... // }, // { // "ProjectionType": "INCLUDE" // ... // }, // ] // ... // } // “` // // The `value` argument to `addOverride` will not be processed or translated // in any way. Pass raw JSON values in here with the correct capitalization // for CloudFormation. If you pass CDK classes or structs, they will be // rendered with lowercased key names, and CloudFormation will reject the // template. // Experimental. AddOverride(path *string, value interface{}) // Adds an override that deletes the value of a property from the resource definition. // Experimental. AddPropertyDeletionOverride(propertyPath *string) // Adds an override to a resource property. // // Syntactic sugar for `addOverride("Properties.<...>", value)`. // Experimental. AddPropertyOverride(propertyPath *string, value interface{}) // Sets the deletion policy of the resource based on the removal policy specified. // // The Removal Policy controls what happens to this resource when it stops // being managed by CloudFormation, either because you've removed it from the // CDK application or because you've made a change that requires the resource // to be replaced. // // The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS // account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). // Experimental. ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) // Returns a token for an runtime attribute of this resource. // // Ideally, use generated attribute accessors (e.g. `resource.arn`), but this can be used for future compatibility // in case there is no generated attribute. // Experimental. GetAtt(attributeName *string) awscdk.Reference // Retrieve a value value from the CloudFormation Resource Metadata. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html // // Note that this is a different set of metadata from CDK node metadata; this // metadata ends up in the stack template under the resource, whereas CDK // node metadata ends up in the Cloud Assembly. // // Experimental. GetMetadata(key *string) interface{} // Examines the CloudFormation resource and discloses attributes. Inspect(inspector awscdk.TreeInspector) // Perform final modifications before synthesis. // // This method can be implemented by derived constructs in order to perform // final changes before synthesis. prepare() will be called after child // constructs have been prepared. // // This is an advanced framework feature. Only use this if you // understand the implications. // Experimental. OnPrepare() // Allows this construct to emit artifacts into the cloud assembly during synthesis. // // This method is usually implemented by framework-level constructs such as `Stack` and `Asset` // as they participate in synthesizing the cloud assembly. // Experimental. OnSynthesize(session constructs.ISynthesisSession) // Validate the current construct. // // This method can be implemented by derived constructs in order to perform // validation logic. It is called on all constructs before synthesis. // // Returns: An array of validation error messages, or an empty array if the construct is valid. // Experimental. OnValidate() *[]*string // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) // Perform final modifications before synthesis. // // This method can be implemented by derived constructs in order to perform // final changes before synthesis. prepare() will be called after child // constructs have been prepared. // // This is an advanced framework feature. Only use this if you // understand the implications. // Experimental. Prepare() RenderProperties(props *map[string]interface{}) *map[string]interface{} // Can be overridden by subclasses to determine if this resource will be rendered into the cloudformation template. // // Returns: `true` if the resource should be included or `false` is the resource // should be omitted. // Experimental. ShouldSynthesize() *bool // Allows this construct to emit artifacts into the cloud assembly during synthesis. // // This method is usually implemented by framework-level constructs such as `Stack` and `Asset` // as they participate in synthesizing the cloud assembly. // Experimental. Synthesize(session awscdk.ISynthesisSession) // Returns a string representation of this construct. // // Returns: a string representation of this resource. // Experimental. ToString() *string // Validate the current construct. // // This method can be implemented by derived constructs in order to perform // validation logic. It is called on all constructs before synthesis. // // Returns: An array of validation error messages, or an empty array if the construct is valid. // Experimental. Validate() *[]*string // Experimental. ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::M2::Environment`.
Specifies a runtime environment for a given runtime engine.
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" cfnEnvironment := awscdk.Aws_m2.NewCfnEnvironment(this, jsii.String("MyCfnEnvironment"), &CfnEnvironmentProps{ EngineType: jsii.String("engineType"), InstanceType: jsii.String("instanceType"), Name: jsii.String("name"), // the properties below are optional Description: jsii.String("description"), EngineVersion: jsii.String("engineVersion"), HighAvailabilityConfig: &HighAvailabilityConfigProperty{ DesiredCapacity: jsii.Number(123), }, KmsKeyId: jsii.String("kmsKeyId"), PreferredMaintenanceWindow: jsii.String("preferredMaintenanceWindow"), PubliclyAccessible: jsii.Boolean(false), SecurityGroupIds: []*string{ jsii.String("securityGroupIds"), }, StorageConfigurations: []interface{}{ &StorageConfigurationProperty{ Efs: &EfsStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }, Fsx: &FsxStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }, }, }, SubnetIds: []*string{ jsii.String("subnetIds"), }, Tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, })
func NewCfnEnvironment ¶
func NewCfnEnvironment(scope awscdk.Construct, id *string, props *CfnEnvironmentProps) CfnEnvironment
Create a new `AWS::M2::Environment`.
type CfnEnvironmentProps ¶
type CfnEnvironmentProps struct { // The target platform for the runtime environment. EngineType *string `field:"required" json:"engineType" yaml:"engineType"` // The instance type of the runtime environment. InstanceType *string `field:"required" json:"instanceType" yaml:"instanceType"` // The name of the runtime environment. Name *string `field:"required" json:"name" yaml:"name"` // The description of the runtime environment. Description *string `field:"optional" json:"description" yaml:"description"` // The version of the runtime engine. EngineVersion *string `field:"optional" json:"engineVersion" yaml:"engineVersion"` // Defines the details of a high availability configuration. HighAvailabilityConfig interface{} `field:"optional" json:"highAvailabilityConfig" yaml:"highAvailabilityConfig"` // The identifier of a customer managed key. KmsKeyId *string `field:"optional" json:"kmsKeyId" yaml:"kmsKeyId"` // Configures the maintenance window you want for the runtime environment. // // If you do not provide a value, a random system-generated value will be assigned. PreferredMaintenanceWindow *string `field:"optional" json:"preferredMaintenanceWindow" yaml:"preferredMaintenanceWindow"` // Specifies whether the runtime environment is publicly accessible. PubliclyAccessible interface{} `field:"optional" json:"publiclyAccessible" yaml:"publiclyAccessible"` // The list of security groups for the VPC associated with this runtime environment. SecurityGroupIds *[]*string `field:"optional" json:"securityGroupIds" yaml:"securityGroupIds"` // Defines the storage configuration for a runtime environment. StorageConfigurations interface{} `field:"optional" json:"storageConfigurations" yaml:"storageConfigurations"` // The list of subnets associated with the VPC for this runtime environment. SubnetIds *[]*string `field:"optional" json:"subnetIds" yaml:"subnetIds"` // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . Tags *map[string]*string `field:"optional" json:"tags" yaml:"tags"` }
Properties for defining a `CfnEnvironment`.
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" cfnEnvironmentProps := &CfnEnvironmentProps{ EngineType: jsii.String("engineType"), InstanceType: jsii.String("instanceType"), Name: jsii.String("name"), // the properties below are optional Description: jsii.String("description"), EngineVersion: jsii.String("engineVersion"), HighAvailabilityConfig: &HighAvailabilityConfigProperty{ DesiredCapacity: jsii.Number(123), }, KmsKeyId: jsii.String("kmsKeyId"), PreferredMaintenanceWindow: jsii.String("preferredMaintenanceWindow"), PubliclyAccessible: jsii.Boolean(false), SecurityGroupIds: []*string{ jsii.String("securityGroupIds"), }, StorageConfigurations: []interface{}{ &StorageConfigurationProperty{ Efs: &EfsStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }, Fsx: &FsxStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }, }, }, SubnetIds: []*string{ jsii.String("subnetIds"), }, Tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, }
type CfnEnvironment_EfsStorageConfigurationProperty ¶
type CfnEnvironment_EfsStorageConfigurationProperty struct { // The file system identifier. FileSystemId *string `field:"required" json:"fileSystemId" yaml:"fileSystemId"` // The mount point for the file system. MountPoint *string `field:"required" json:"mountPoint" yaml:"mountPoint"` }
Defines the storage configuration for an Amazon EFS file system.
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" efsStorageConfigurationProperty := &EfsStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }
type CfnEnvironment_FsxStorageConfigurationProperty ¶
type CfnEnvironment_FsxStorageConfigurationProperty struct { // The file system identifier. FileSystemId *string `field:"required" json:"fileSystemId" yaml:"fileSystemId"` // The mount point for the file system. MountPoint *string `field:"required" json:"mountPoint" yaml:"mountPoint"` }
Defines the storage configuration for an Amazon FSx file system.
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" fsxStorageConfigurationProperty := &FsxStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }
type CfnEnvironment_HighAvailabilityConfigProperty ¶
type CfnEnvironment_HighAvailabilityConfigProperty struct { // The number of instances in a high availability configuration. DesiredCapacity *float64 `field:"required" json:"desiredCapacity" yaml:"desiredCapacity"` }
Defines the details of a high availability configuration.
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" highAvailabilityConfigProperty := &HighAvailabilityConfigProperty{ DesiredCapacity: jsii.Number(123), }
type CfnEnvironment_StorageConfigurationProperty ¶
type CfnEnvironment_StorageConfigurationProperty struct { // Defines the storage configuration for an Amazon EFS file system. Efs interface{} `field:"optional" json:"efs" yaml:"efs"` // Defines the storage configuration for an Amazon FSx file system. Fsx interface{} `field:"optional" json:"fsx" yaml:"fsx"` }
Defines the storage configuration for a runtime environment.
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" storageConfigurationProperty := &StorageConfigurationProperty{ Efs: &EfsStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }, Fsx: &FsxStorageConfigurationProperty{ FileSystemId: jsii.String("fileSystemId"), MountPoint: jsii.String("mountPoint"), }, }
Source Files ¶
- awsm2.go
- awsm2_CfnApplication.go
- awsm2_CfnApplicationProps.go
- awsm2_CfnApplication_DefinitionProperty.go
- awsm2_CfnApplication__runtime_type_checks.go
- awsm2_CfnEnvironment.go
- awsm2_CfnEnvironmentProps.go
- awsm2_CfnEnvironment_EfsStorageConfigurationProperty.go
- awsm2_CfnEnvironment_FsxStorageConfigurationProperty.go
- awsm2_CfnEnvironment_HighAvailabilityConfigProperty.go
- awsm2_CfnEnvironment_StorageConfigurationProperty.go
- awsm2_CfnEnvironment__runtime_type_checks.go