Interface LambdaDeploymentConfigProps

All Superinterfaces:
BaseDeploymentConfigOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LambdaDeploymentConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.352Z") @Stability(Stable) public interface LambdaDeploymentConfigProps extends software.amazon.jsii.JsiiSerializable, BaseDeploymentConfigOptions
Construction properties of LambdaDeploymentConfig.

Example:

 LambdaApplication application;
 Alias alias;
 LambdaDeploymentConfig config = LambdaDeploymentConfig.Builder.create(this, "CustomConfig")
         .trafficRouting(TimeBasedCanaryTrafficRouting.Builder.create()
                 .interval(Duration.minutes(15))
                 .percentage(5)
                 .build())
         .build();
 LambdaDeploymentGroup deploymentGroup = LambdaDeploymentGroup.Builder.create(this, "BlueGreenDeployment")
         .application(application)
         .alias(alias)
         .deploymentConfig(config)
         .build();