CfnDeploymentProps¶
-
class
aws_cdk.aws_appconfig.
CfnDeploymentProps
(*, application_id, configuration_profile_id, configuration_version, deployment_strategy_id, environment_id, description=None, tags=None)¶ Bases:
object
Properties for defining a
CfnDeployment
.- Parameters
application_id (
str
) – The application ID.configuration_profile_id (
str
) – The configuration profile ID.configuration_version (
str
) – The configuration version to deploy.deployment_strategy_id (
str
) – The deployment strategy ID.environment_id (
str
) – The environment ID.description (
Optional
[str
]) – A description of the deployment.tags (
Optional
[Sequence
[Union
[TagsProperty
,Dict
[str
,Any
]]]]) – Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
- Link
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-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. import aws_cdk.aws_appconfig as appconfig cfn_deployment_props = appconfig.CfnDeploymentProps( application_id="applicationId", configuration_profile_id="configurationProfileId", configuration_version="configurationVersion", deployment_strategy_id="deploymentStrategyId", environment_id="environmentId", # the properties below are optional description="description", tags=[appconfig.CfnDeployment.TagsProperty( key="key", value="value" )] )
Attributes
-
application_id
¶ The application ID.
-
configuration_profile_id
¶ The configuration profile ID.
-
configuration_version
¶ The configuration version to deploy.
-
deployment_strategy_id
¶ The deployment strategy ID.
-
description
¶ A description of the deployment.
-
environment_id
¶ The environment ID.
Metadata to assign to the deployment.
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.