interface DeletionProtectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VerifiedPermissions.CfnPolicyStorePropsMixin.DeletionProtectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsverifiedpermissions#CfnPolicyStorePropsMixin_DeletionProtectionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.verifiedpermissions.CfnPolicyStorePropsMixin.DeletionProtectionProperty |
Python | aws_cdk.cfn_property_mixins.aws_verifiedpermissions.CfnPolicyStorePropsMixin.DeletionProtectionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_verifiedpermissions » 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 { aws_verifiedpermissions as verifiedpermissions } from '@aws-cdk/cfn-property-mixins';
const deletionProtectionProperty: verifiedpermissions.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