StackSetOperationPreferencesArgs

data class StackSetOperationPreferencesArgs(val concurrencyMode: Output<StackSetConcurrencyMode>? = null, val failureToleranceCount: Output<Int>? = null, val failureTolerancePercentage: Output<Int>? = null, val maxConcurrentCount: Output<Int>? = null, val maxConcurrentPercentage: Output<Int>? = null, val regionConcurrencyType: Output<StackSetRegionConcurrencyType>? = null, val regionOrder: Output<List<String>>? = null) : ConvertibleToJava<StackSetOperationPreferencesArgs>

The user-specified preferences for how AWS CloudFormation performs a stack set operation.

Constructors

Link copied to clipboard
constructor(concurrencyMode: Output<StackSetConcurrencyMode>? = null, failureToleranceCount: Output<Int>? = null, failureTolerancePercentage: Output<Int>? = null, maxConcurrentCount: Output<Int>? = null, maxConcurrentPercentage: Output<Int>? = null, regionConcurrencyType: Output<StackSetRegionConcurrencyType>? = null, regionOrder: Output<List<String>>? = null)

Properties

Link copied to clipboard

Specifies how the concurrency level behaves during the operation execution.

Link copied to clipboard
val failureToleranceCount: Output<Int>? = null

The number of accounts, per Region, for which this operation can fail before AWS CloudFormation stops the operation in that Region. If the operation is stopped in a Region, AWS CloudFormation doesn't attempt the operation in any subsequent Regions. Conditional: You must specify either FailureToleranceCount or FailureTolerancePercentage (but not both).

Link copied to clipboard
val failureTolerancePercentage: Output<Int>? = null

The percentage of accounts, per Region, for which this stack operation can fail before AWS CloudFormation stops the operation in that Region. If the operation is stopped in a Region, AWS CloudFormation doesn't attempt the operation in any subsequent Regions. When calculating the number of accounts based on the specified percentage, AWS CloudFormation rounds down to the next whole number. Conditional: You must specify either FailureToleranceCount or FailureTolerancePercentage , but not both.

Link copied to clipboard
val maxConcurrentCount: Output<Int>? = null

The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of FailureToleranceCount . MaxConcurrentCount is at most one more than the FailureToleranceCount . Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either MaxConcurrentCount or MaxConcurrentPercentage , but not both.

Link copied to clipboard
val maxConcurrentPercentage: Output<Int>? = null

The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS CloudFormation rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, CloudFormation sets the number as one instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either MaxConcurrentCount or MaxConcurrentPercentage , but not both.

Link copied to clipboard

The concurrency type of deploying StackSets operations in Regions, could be in parallel or one Region at a time.

Link copied to clipboard
val regionOrder: Output<List<String>>? = null

The order of the Regions where you want to perform the stack operation.

Functions

Link copied to clipboard
open override fun toJava(): StackSetOperationPreferencesArgs