@Generated(value="jsii-pacmak/1.28.0 (build 1801f4f)", date="2021-04-20T16:33:47.179Z") @Stability(value=Stable) public enum CfnDeletionPolicy extends Enum<CfnDeletionPolicy>
You specify a DeletionPolicy attribute for each resource that you want to control. If a resource has no DeletionPolicy attribute, AWS CloudFormation deletes the resource by default. Note that this capability also applies to update operations that lead to resources being removed.
| Enum Constant and Description |
|---|
DELETE
AWS CloudFormation deletes the resource and all its content if applicable during stack deletion.
|
RETAIN
AWS CloudFormation keeps the resource without deleting the resource or its contents when its stack is deleted.
|
SNAPSHOT
For resources that support snapshots (AWS::EC2::Volume, AWS::ElastiCache::CacheCluster, AWS::ElastiCache::ReplicationGroup, AWS::RDS::DBInstance, AWS::RDS::DBCluster, and AWS::Redshift::Cluster), AWS CloudFormation creates a snapshot for the resource before deleting it.
|
| Modifier and Type | Method and Description |
|---|---|
static CfnDeletionPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CfnDeletionPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final CfnDeletionPolicy DELETE
You can add this deletion policy to any resource type. By default, if you don't specify a DeletionPolicy, AWS CloudFormation deletes your resources. However, be aware of the following considerations:
@Stability(value=Stable) public static final CfnDeletionPolicy RETAIN
You can add this deletion policy to any resource type. Note that when AWS CloudFormation completes the stack deletion, the stack will be in Delete_Complete state; however, resources that are retained continue to exist and continue to incur applicable charges until you delete those resources.
@Stability(value=Stable) public static final CfnDeletionPolicy SNAPSHOT
Note that when AWS CloudFormation completes the stack deletion, the stack will be in the Delete_Complete state; however, the snapshots that are created with this policy continue to exist and continue to incur applicable charges until you delete those snapshots.
public static CfnDeletionPolicy[] values()
for (CfnDeletionPolicy c : CfnDeletionPolicy.values()) System.out.println(c);
public static CfnDeletionPolicy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.