CfnDeploymentProps
- class aws_cdk.aws_appconfig.CfnDeploymentProps(*, application_id, configuration_profile_id, configuration_version, deployment_strategy_id, environment_id, description=None, dynamic_extension_parameters=None, kms_key_identifier=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. If deploying an AWS AppConfig hosted configuration version, you can specify either the version number or version label. For all other configurations, you must specify the version number.deployment_strategy_id (
str
) – The deployment strategy ID.environment_id (
str
) – The environment ID.description (
Optional
[str
]) – A description of the deployment.dynamic_extension_parameters (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,DynamicExtensionParametersProperty
,Dict
[str
,Any
]]],None
]) – A map of dynamic extension parameter names to values to pass to associated extensions withPRE_START_DEPLOYMENT
actions.kms_key_identifier (
Optional
[str
]) – The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.tags (
Optional
[Sequence
[Union
[CfnTag
,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.
- See:
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. from aws_cdk import 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", dynamic_extension_parameters=[appconfig.CfnDeployment.DynamicExtensionParametersProperty( extension_reference="extensionReference", parameter_name="parameterName", parameter_value="parameterValue" )], kms_key_identifier="kmsKeyIdentifier", tags=[CfnTag( key="key", value="value" )] )
Attributes
- application_id
The application ID.
- configuration_profile_id
The configuration profile ID.
- configuration_version
The configuration version to deploy.
If deploying an AWS AppConfig hosted configuration version, you can specify either the version number or version label. For all other configurations, you must specify the version number.
- deployment_strategy_id
The deployment strategy ID.
- description
A description of the deployment.
- dynamic_extension_parameters
A map of dynamic extension parameter names to values to pass to associated extensions with
PRE_START_DEPLOYMENT
actions.
- environment_id
The environment ID.
- kms_key_identifier
The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
- tags
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.