interface CfnDeploymentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.M2.CfnDeploymentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsm2#CfnDeploymentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.m2.CfnDeploymentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_m2.CfnDeploymentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_m2 » CfnDeploymentMixinProps |
Properties for CfnDeploymentPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_m2 as m2 } from '@aws-cdk/cfn-property-mixins';
const cfnDeploymentMixinProps: m2.CfnDeploymentMixinProps = {
applicationId: 'applicationId',
applicationVersion: 123,
environmentId: 'environmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier of the application. |
| application | number | The version of the application. |
| environment | string | The unique identifier of the runtime environment. |
applicationId?
Type:
string
(optional)
The unique identifier of the application.
applicationVersion?
Type:
number
(optional)
The version of the application.
environmentId?
Type:
string
(optional)
The unique identifier of the runtime environment.

.NET
Go
Java
Python
TypeScript