BaseDeploymentConfigOptions

class aws_cdk.aws_codedeploy.BaseDeploymentConfigOptions(*, deployment_config_name=None)

Bases: object

Construction properties of BaseDeploymentConfig.

Parameters:

deployment_config_name (Optional[str]) – The physical, human-readable name of the Deployment Configuration. Default: - automatically generated name

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_codedeploy as codedeploy

base_deployment_config_options = codedeploy.BaseDeploymentConfigOptions(
    deployment_config_name="deploymentConfigName"
)

Attributes

deployment_config_name

The physical, human-readable name of the Deployment Configuration.

Default:
  • automatically generated name