Interface CfnStackSet.OperationPreferencesProperty

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

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

For more information on maximum concurrent accounts and failure tolerance, see Stack set operation options .

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

See Also: