interface DeletionProtectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.DeletionProtectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_DeletionProtectionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.DeletionProtectionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.DeletionProtectionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataSourcePropsMixin » DeletionProtectionConfigurationProperty |
Configuration for deletion protection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const deletionProtectionConfigurationProperty: bedrock.CfnDataSourcePropsMixin.DeletionProtectionConfigurationProperty = {
deletionProtectionStatus: 'deletionProtectionStatus',
deletionProtectionThreshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| deletion | string | Indicates whether a feature is enabled or disabled. |
| deletion | number | Threshold for deletion protection. |
deletionProtectionStatus?
Type:
string
(optional)
Indicates whether a feature is enabled or disabled.
deletionProtectionThreshold?
Type:
number
(optional, default: 15)
Threshold for deletion protection.

.NET
Go
Java
Python
TypeScript