interface SensitiveDataConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationProject.SensitiveDataConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationProject_SensitiveDataConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationProject.SensitiveDataConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationProject.SensitiveDataConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationProject » SensitiveDataConfigurationProperty |
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-lib';
const sensitiveDataConfigurationProperty: bedrock.CfnDataAutomationProject.SensitiveDataConfigurationProperty = {
detectionMode: 'detectionMode',
detectionScope: ['detectionScope'],
piiEntitiesConfiguration: {
piiEntityTypes: ['piiEntityTypes'],
redactionMaskMode: 'redactionMaskMode',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| detection | string | |
| detection | string[] | |
| pii | IResolvable | PIIEntities |
detectionMode?
Type:
string
(optional)
detectionScope?
Type:
string[]
(optional)
piiEntitiesConfiguration?
Type:
IResolvable | PIIEntities
(optional)

.NET
Go
Java
Python
TypeScript