Enum StackSetOrganizationsAutoDeployment
java.lang.Object
java.lang.Enum<StackSetOrganizationsAutoDeployment>
software.amazon.awscdk.services.codepipeline.actions.StackSetOrganizationsAutoDeployment
- All Implemented Interfaces:
- Serializable,- Comparable<StackSetOrganizationsAutoDeployment>,- java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:48.502Z")
@Stability(Stable)
public enum StackSetOrganizationsAutoDeployment
extends Enum<StackSetOrganizationsAutoDeployment>
Describes whether AWS CloudFormation StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionStackSets does not automatically deploy additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions.StackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions.Stack resources are retained when an account is removed from a target organization or OU.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static StackSetOrganizationsAutoDeployment[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
ENABLEDStackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions.If an account is removed from a target organization or OU, AWS CloudFormation StackSets deletes stack instances from the account in the specified Regions. 
- 
DISABLEDStackSets does not automatically deploy additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions.
- 
ENABLED_WITH_STACK_RETENTION@Stability(Stable) public static final StackSetOrganizationsAutoDeployment ENABLED_WITH_STACK_RETENTIONStack resources are retained when an account is removed from a target organization or OU.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-