DeploymentReference
- class aws_cdk.aws_appconfig.DeploymentReference(*, application_id, deployment_number, environment_id)
Bases:
objectA reference to a Deployment resource.
- Parameters:
application_id (
str) – The ApplicationId of the Deployment resource.deployment_number (
str) – The DeploymentNumber of the Deployment resource.environment_id (
str) – The EnvironmentId of the Deployment resource.
- 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 deployment_reference = appconfig.DeploymentReference( application_id="applicationId", deployment_number="deploymentNumber", environment_id="environmentId" )
Attributes
- application_id
The ApplicationId of the Deployment resource.
- deployment_number
The DeploymentNumber of the Deployment resource.
- environment_id
The EnvironmentId of the Deployment resource.