interface AIGuardrailSensitiveInformationPolicyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAIGuardrailPropsMixin.AIGuardrailSensitiveInformationPolicyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAIGuardrailPropsMixin_AIGuardrailSensitiveInformationPolicyConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAIGuardrailPropsMixin.AIGuardrailSensitiveInformationPolicyConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAIGuardrailPropsMixin.AIGuardrailSensitiveInformationPolicyConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnAIGuardrailPropsMixin » AIGuardrailSensitiveInformationPolicyConfigProperty |
Sensitive information policy configuration for a guardrail.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
const aIGuardrailSensitiveInformationPolicyConfigProperty: wisdom.CfnAIGuardrailPropsMixin.AIGuardrailSensitiveInformationPolicyConfigProperty = {
piiEntitiesConfig: [{
action: 'action',
type: 'type',
}],
regexesConfig: [{
action: 'action',
description: 'description',
name: 'name',
pattern: 'pattern',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pii | IResolvable | (IResolvable | Guardrail)[] | List of entities. |
| regexes | IResolvable | (IResolvable | Guardrail)[] | List of regex. |
piiEntitiesConfig?
Type:
IResolvable | (IResolvable | Guardrail)[]
(optional)
List of entities.
regexesConfig?
Type:
IResolvable | (IResolvable | Guardrail)[]
(optional)
List of regex.

.NET
Go
Java
Python
TypeScript