CfnDeploymentMixinProps
- class aws_cdk.mixins_preview.aws_m2.mixins.CfnDeploymentMixinProps(*, application_id=None, application_version=None, environment_id=None)
Bases:
objectProperties for CfnDeploymentPropsMixin.
- Parameters:
application_id (
Optional[str]) – The unique identifier of the application.application_version (
Union[int,float,None]) – The version of the application.environment_id (
Optional[str]) – The unique identifier of the runtime environment.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_m2 import mixins as m2_mixins cfn_deployment_mixin_props = m2_mixins.CfnDeploymentMixinProps( application_id="applicationId", application_version=123, environment_id="environmentId" )
Attributes
- application_id
The unique identifier of the application.
- application_version
The version of the application.
- environment_id
The unique identifier of the runtime environment.