CfnDeploymentMixinProps
- class aws_cdk.mixins_preview.aws_appconfig.mixins.CfnDeploymentMixinProps(*, application_id=None, configuration_profile_id=None, configuration_version=None, deployment_strategy_id=None, description=None, dynamic_extension_parameters=None, environment_id=None, kms_key_identifier=None, tags=None)
Bases:
objectProperties for CfnDeploymentPropsMixin.
- Parameters:
application_id (
Optional[str]) – The application ID.configuration_profile_id (
Optional[str]) – The configuration profile ID.configuration_version (
Optional[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 (
Optional[str]) – The deployment strategy 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_DEPLOYMENTactions.environment_id (
Optional[str]) – The environment ID.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:
from aws_cdk import CfnTag # 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_appconfig import mixins as appconfig_mixins cfn_deployment_mixin_props = appconfig_mixins.CfnDeploymentMixinProps( application_id="applicationId", configuration_profile_id="configurationProfileId", configuration_version="configurationVersion", deployment_strategy_id="deploymentStrategyId", description="description", dynamic_extension_parameters=[appconfig_mixins.CfnDeploymentPropsMixin.DynamicExtensionParametersProperty( extension_reference="extensionReference", parameter_name="parameterName", parameter_value="parameterValue" )], environment_id="environmentId", 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_DEPLOYMENTactions.
- 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.