Interface CfnContainerFleet.DeploymentConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContainerFleet.DeploymentConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnContainerFleet

@Stability(Stable) public static interface CfnContainerFleet.DeploymentConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Set of rules for processing a deployment for a container fleet update.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.gamelift.*;
 DeploymentConfigurationProperty deploymentConfigurationProperty = DeploymentConfigurationProperty.builder()
         .impairmentStrategy("impairmentStrategy")
         .minimumHealthyPercentage(123)
         .protectionStrategy("protectionStrategy")
         .build();
 

See Also: