Interface CfnGuardrailPropsMixin.ISensitiveInformationPolicyConfigProperty
Contains details about PII entities and regular expressions to configure for the guardrail.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnGuardrailPropsMixin.ISensitiveInformationPolicyConfigProperty
Syntax (vb)
Public Interface CfnGuardrailPropsMixin.ISensitiveInformationPolicyConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Bedrock;
var sensitiveInformationPolicyConfigProperty = new SensitiveInformationPolicyConfigProperty {
PiiEntitiesConfig = new [] { new PiiEntityConfigProperty {
Action = "action",
InputAction = "inputAction",
InputEnabled = false,
OutputAction = "outputAction",
OutputEnabled = false,
Type = "type"
} },
RegexesConfig = new [] { new RegexConfigProperty {
Action = "action",
Description = "description",
InputAction = "inputAction",
InputEnabled = false,
Name = "name",
OutputAction = "outputAction",
OutputEnabled = false,
Pattern = "pattern"
} }
};
Synopsis
Properties
| PiiEntitiesConfig | A list of PII entities to configure to the guardrail. |
| RegexesConfig | A list of regular expressions to configure to the guardrail. |
Properties
PiiEntitiesConfig
A list of PII entities to configure to the guardrail.
object? PiiEntitiesConfig { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnGuardrailPropsMixin.IPiiEntityConfigProperty)[]
RegexesConfig
A list of regular expressions to configure to the guardrail.
object? RegexesConfig { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnGuardrailPropsMixin.IRegexConfigProperty)[]