interface DeletionProtectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VerifiedPermissions.Mixins.CfnPolicyStorePropsMixin.DeletionProtectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsverifiedpermissions/mixins#CfnPolicyStorePropsMixin_DeletionProtectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.verifiedpermissions.mixins.CfnPolicyStorePropsMixin.DeletionProtectionProperty |
Python | aws_cdk.mixins_preview.aws_verifiedpermissions.mixins.CfnPolicyStorePropsMixin.DeletionProtectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_verifiedpermissions » mixins » CfnPolicyStorePropsMixin » DeletionProtectionProperty |
Specifies whether the policy store can be deleted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as verifiedpermissions_mixins } from '@aws-cdk/mixins-preview/aws-verifiedpermissions';
const deletionProtectionProperty: verifiedpermissions_mixins.CfnPolicyStorePropsMixin.DeletionProtectionProperty = {
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode? | string | Specifies whether the policy store can be deleted. If enabled, the policy store can't be deleted. |
mode?
Type:
string
(optional, default: "DISABLED")
Specifies whether the policy store can be deleted. If enabled, the policy store can't be deleted.
The default state is DISABLED .

.NET
Go
Java
Python
TypeScript