Interface BaseDeploymentConfigProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:23:58.735Z") @Stability(Stable) public interface BaseDeploymentConfigProps extends software.amazon.jsii.JsiiSerializable, BaseDeploymentConfigOptions
Complete base deployment config properties that are required to be supplied by the implementation of the BaseDeploymentConfig class.

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.*;
 MinimumHealthyHosts minimumHealthyHosts;
 MinimumHealthyHostsPerZone minimumHealthyHostsPerZone;
 TrafficRouting trafficRouting;
 BaseDeploymentConfigProps baseDeploymentConfigProps = BaseDeploymentConfigProps.builder()
         .computePlatform(ComputePlatform.SERVER)
         .deploymentConfigName("deploymentConfigName")
         .minimumHealthyHosts(minimumHealthyHosts)
         .trafficRouting(trafficRouting)
         .zonalConfig(ZonalConfig.builder()
                 .firstZoneMonitorDuration(Duration.minutes(30))
                 .minimumHealthyHostsPerZone(minimumHealthyHostsPerZone)
                 .monitorDuration(Duration.minutes(30))
                 .build())
         .build();