AwsCloudformationStackSetAutoDeploymentArgs
interface AwsCloudformationStackSetAutoDeploymentArgs {
dependsOnStackSets?: Input<Input<string>[]>;
enabled?: Input<boolean>;
retainStacksOnAccountRemoval?: Input<boolean>;
}Auto-deployment settings for service-managed stack sets.
Example
CODE
const autoDeployment: AwsCloudformationStackSetAutoDeploymentArgs = {
enabled: true,
retainStacksOnAccountRemoval: false,
};Properties
dependsOnStackSets: Input<Input<string>[]>
Optional dependent StackSet ARNs for sequencing auto-deployment operations.
enabled: Input<boolean>
Whether auto-deployment is enabled.
retainStacksOnAccountRemoval: Input<boolean>
Whether stacks are retained when account targets are removed.