CfnDeploymentMixinProps

class aws_cdk.mixins_preview.aws_m2.mixins.CfnDeploymentMixinProps(*, application_id=None, application_version=None, environment_id=None)

Bases: object

Properties 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#cfn-m2-deployment-applicationid

application_version

The version of the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#cfn-m2-deployment-applicationversion

environment_id

The unique identifier of the runtime environment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-m2-deployment.html#cfn-m2-deployment-environmentid