Class CustomLambdaDeploymentConfig

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.codedeploy.CustomLambdaDeploymentConfig
All Implemented Interfaces:
IResource, IBaseDeploymentConfig, ILambdaDeploymentConfig, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-22T22:42:48.984Z") @Stability(Deprecated) @Deprecated public class CustomLambdaDeploymentConfig extends Resource implements ILambdaDeploymentConfig
Deprecated.
CloudFormation now supports Lambda deployment configurations without custom resources. Use LambdaDeploymentConfig.
(deprecated) A custom Deployment Configuration for a Lambda Deployment Group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.codedeploy.*;
 CustomLambdaDeploymentConfig customLambdaDeploymentConfig = CustomLambdaDeploymentConfig.Builder.create(this, "MyCustomLambdaDeploymentConfig")
         .interval(Duration.minutes(30))
         .percentage(123)
         .type(CustomLambdaDeploymentConfigType.CANARY)
         // the properties below are optional
         .deploymentConfigName("deploymentConfigName")
         .build();
 

  • Constructor Details

    • CustomLambdaDeploymentConfig

      protected CustomLambdaDeploymentConfig(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • CustomLambdaDeploymentConfig

      protected CustomLambdaDeploymentConfig(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • CustomLambdaDeploymentConfig

      @Stability(Deprecated) @Deprecated public CustomLambdaDeploymentConfig(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CustomLambdaDeploymentConfigProps props)
      Deprecated.
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details