Interface CfnDeploymentConfigMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentConfigMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:57.274Z") @Stability(Stable) public interface CfnDeploymentConfigMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnDeploymentConfigPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.codedeploy.*;
 CfnDeploymentConfigMixinProps cfnDeploymentConfigMixinProps = CfnDeploymentConfigMixinProps.builder()
         .computePlatform("computePlatform")
         .deploymentConfigName("deploymentConfigName")
         .minimumHealthyHosts(MinimumHealthyHostsProperty.builder()
                 .type("type")
                 .value(123)
                 .build())
         .trafficRoutingConfig(TrafficRoutingConfigProperty.builder()
                 .timeBasedCanary(TimeBasedCanaryProperty.builder()
                         .canaryInterval(123)
                         .canaryPercentage(123)
                         .build())
                 .timeBasedLinear(TimeBasedLinearProperty.builder()
                         .linearInterval(123)
                         .linearPercentage(123)
                         .build())
                 .type("type")
                 .build())
         .zonalConfig(ZonalConfigProperty.builder()
                 .firstZoneMonitorDurationInSeconds(123)
                 .minimumHealthyHostsPerZone(MinimumHealthyHostsPerZoneProperty.builder()
                         .type("type")
                         .value(123)
                         .build())
                 .monitorDurationInSeconds(123)
                 .build())
         .build();
 

See Also: