LambdaDeploymentConfigImportProps

class aws_cdk.aws_codedeploy.LambdaDeploymentConfigImportProps(*, deployment_config_name)

Bases: object

Properties of a reference to a CodeDeploy Lambda Deployment Configuration.

Parameters:

deployment_config_name (str) – The physical, human-readable name of the custom CodeDeploy Lambda Deployment Configuration that we are referencing.

See:

LambdaDeploymentConfig# import

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

lambda_deployment_config_import_props = codedeploy.LambdaDeploymentConfigImportProps(
    deployment_config_name="deploymentConfigName"
)

Attributes

deployment_config_name

The physical, human-readable name of the custom CodeDeploy Lambda Deployment Configuration that we are referencing.