interface CfnDeploymentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.M2.Mixins.CfnDeploymentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsm2/mixins#CfnDeploymentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.m2.mixins.CfnDeploymentMixinProps |
Python | aws_cdk.mixins_preview.aws_m2.mixins.CfnDeploymentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_m2 » mixins » 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 { mixins as m2_mixins } from '@aws-cdk/mixins-preview/aws-m2';
const cfnDeploymentMixinProps: m2_mixins.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