interface SensitiveInformationPolicyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnGuardrail.SensitiveInformationPolicyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnGuardrail_SensitiveInformationPolicyConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnGuardrail.SensitiveInformationPolicyConfigProperty |
Python | aws_cdk.aws_bedrock.CfnGuardrail.SensitiveInformationPolicyConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnGuardrail » SensitiveInformationPolicyConfigProperty |
Contains details about PII entities and regular expressions to configure for the guardrail.
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 sensitiveInformationPolicyConfigProperty: bedrock.CfnGuardrail.SensitiveInformationPolicyConfigProperty = {
piiEntitiesConfig: [{
action: 'action',
type: 'type',
// the properties below are optional
inputAction: 'inputAction',
inputEnabled: false,
outputAction: 'outputAction',
outputEnabled: false,
}],
regexesConfig: [{
action: 'action',
name: 'name',
pattern: 'pattern',
// the properties below are optional
description: 'description',
inputAction: 'inputAction',
inputEnabled: false,
outputAction: 'outputAction',
outputEnabled: false,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pii | IResolvable | (IResolvable | Pii)[] | A list of PII entities to configure to the guardrail. |
| regexes | IResolvable | (IResolvable | Regex)[] | A list of regular expressions to configure to the guardrail. |
piiEntitiesConfig?
Type:
IResolvable | (IResolvable | Pii)[]
(optional)
A list of PII entities to configure to the guardrail.
regexesConfig?
Type:
IResolvable | (IResolvable | Regex)[]
(optional)
A list of regular expressions to configure to the guardrail.

.NET
Go
Java
Python
TypeScript