Interface EcsDeploymentConfigProps

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:28.392Z") @Stability(Stable) public interface EcsDeploymentConfigProps extends software.amazon.jsii.JsiiSerializable, BaseDeploymentConfigOptions
Construction properties of EcsDeploymentConfig.

Example:

 EcsDeploymentConfig.Builder.create(this, "CustomConfig")
         .trafficRouting(TimeBasedCanaryTrafficRouting.Builder.create()
                 .interval(Duration.minutes(15))
                 .percentage(5)
                 .build())
         .build();