![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.cloudformation.kotlin.outputs.StackSetOperationPreferences.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cloudformation.kotlin.outputs
import com.pulumi.awsnative.cloudformation.kotlin.enums.StackSetConcurrencyMode
import com.pulumi.awsnative.cloudformation.kotlin.enums.StackSetRegionConcurrencyType
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The user-specified preferences for how AWS CloudFormation performs a stack set operation.
* @property concurrencyMode Specifies how the concurrency level behaves during the operation execution.
* - `STRICT_FAILURE_TOLERANCE` : This option dynamically lowers the concurrency level to ensure the number of failed accounts never exceeds the value of `FailureToleranceCount` +1. The initial actual concurrency is set to the lower of either the value of the `MaxConcurrentCount` , or the value of `FailureToleranceCount` +1. The actual concurrency is then reduced proportionally by the number of failures. This is the default behavior.
* If failure tolerance or Maximum concurrent accounts are set to percentages, the behavior is similar.
* - `SOFT_FAILURE_TOLERANCE` : This option decouples `FailureToleranceCount` from the actual concurrency. This allows stack set operations to run at the concurrency level set by the `MaxConcurrentCount` value, or `MaxConcurrentPercentage` , regardless of the number of failures.
* @property failureToleranceCount 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).
* @property failureTolerancePercentage 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.
* @property maxConcurrentCount 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.
* @property maxConcurrentPercentage 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.
* @property regionConcurrencyType The concurrency type of deploying StackSets operations in Regions, could be in parallel or one Region at a time.
* @property regionOrder The order of the Regions where you want to perform the stack operation.
* > `RegionOrder` isn't followed if `AutoDeployment` is enabled.
*/
public data class StackSetOperationPreferences(
public val concurrencyMode: StackSetConcurrencyMode? = null,
public val failureToleranceCount: Int? = null,
public val failureTolerancePercentage: Int? = null,
public val maxConcurrentCount: Int? = null,
public val maxConcurrentPercentage: Int? = null,
public val regionConcurrencyType: StackSetRegionConcurrencyType? = null,
public val regionOrder: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.cloudformation.outputs.StackSetOperationPreferences): StackSetOperationPreferences = StackSetOperationPreferences(
concurrencyMode = javaType.concurrencyMode().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.cloudformation.kotlin.enums.StackSetConcurrencyMode.Companion.toKotlin(args0)
})
}).orElse(null),
failureToleranceCount = javaType.failureToleranceCount().map({ args0 -> args0 }).orElse(null),
failureTolerancePercentage = javaType.failureTolerancePercentage().map({ args0 ->
args0
}).orElse(null),
maxConcurrentCount = javaType.maxConcurrentCount().map({ args0 -> args0 }).orElse(null),
maxConcurrentPercentage = javaType.maxConcurrentPercentage().map({ args0 -> args0 }).orElse(null),
regionConcurrencyType = javaType.regionConcurrencyType().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.cloudformation.kotlin.enums.StackSetRegionConcurrencyType.Companion.toKotlin(args0)
})
}).orElse(null),
regionOrder = javaType.regionOrder().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy