Interface CfnStackSetPropsMixin.OperationPreferencesProperty

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

@Stability(Stable) public static interface CfnStackSetPropsMixin.OperationPreferencesProperty extends software.amazon.jsii.JsiiSerializable
The user-specified preferences for how CloudFormation performs a StackSet operation.

For more information on maximum concurrent accounts and failure tolerance, see StackSet operation options in the CloudFormation User Guide .

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.cloudformation.*;
 OperationPreferencesProperty operationPreferencesProperty = OperationPreferencesProperty.builder()
         .concurrencyMode("concurrencyMode")
         .failureToleranceCount(123)
         .failureTolerancePercentage(123)
         .maxConcurrentCount(123)
         .maxConcurrentPercentage(123)
         .regionConcurrencyType("regionConcurrencyType")
         .regionOrder(List.of("regionOrder"))
         .build();
 

See Also: