CfnDeploymentProps

class aws_cdk.aws_m2.CfnDeploymentProps(*, application_id, application_version, environment_id)

Bases: object

Properties for defining a CfnDeployment.

Parameters:
  • application_id (str) – The unique identifier of the application.

  • application_version (Union[int, float]) – The version of the application.

  • environment_id (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 import aws_m2 as m2

cfn_deployment_props = m2.CfnDeploymentProps(
    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