Class LambdaDeploymentConfigImportProps
Properties of a reference to a CodeDeploy Lambda Deployment Configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LambdaDeploymentConfigImportProps : ILambdaDeploymentConfigImportProps
Syntax (vb)
Public Class LambdaDeploymentConfigImportProps Implements ILambdaDeploymentConfigImportProps
Remarks
See: LambdaDeploymentConfig# import
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeDeploy;
var lambdaDeploymentConfigImportProps = new LambdaDeploymentConfigImportProps {
DeploymentConfigName = "deploymentConfigName"
};
Synopsis
Constructors
LambdaDeploymentConfigImportProps() | Properties of a reference to a CodeDeploy Lambda Deployment Configuration. |
Properties
DeploymentConfigName | The physical, human-readable name of the custom CodeDeploy Lambda Deployment Configuration that we are referencing. |
Constructors
LambdaDeploymentConfigImportProps()
Properties of a reference to a CodeDeploy Lambda Deployment Configuration.
public LambdaDeploymentConfigImportProps()
Remarks
See: LambdaDeploymentConfig# import
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeDeploy;
var lambdaDeploymentConfigImportProps = new LambdaDeploymentConfigImportProps {
DeploymentConfigName = "deploymentConfigName"
};
Properties
DeploymentConfigName
The physical, human-readable name of the custom CodeDeploy Lambda Deployment Configuration that we are referencing.
public string DeploymentConfigName { get; set; }
Property Value
Remarks
See: LambdaDeploymentConfig# import
ExampleMetadata: fixture=_generated