interface WordPolicyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnGuardrail.WordPolicyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnGuardrail_WordPolicyConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnGuardrail.WordPolicyConfigProperty |
Python | aws_cdk.aws_bedrock.CfnGuardrail.WordPolicyConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnGuardrail » WordPolicyConfigProperty |
Contains details about the word policy to configured 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 wordPolicyConfigProperty: bedrock.CfnGuardrail.WordPolicyConfigProperty = {
managedWordListsConfig: [{
type: 'type',
// the properties below are optional
inputAction: 'inputAction',
inputEnabled: false,
outputAction: 'outputAction',
outputEnabled: false,
}],
wordsConfig: [{
text: 'text',
// the properties below are optional
inputAction: 'inputAction',
inputEnabled: false,
outputAction: 'outputAction',
outputEnabled: false,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| managed | IResolvable | (IResolvable | Managed)[] | A list of managed words to configure for the guardrail. |
| words | IResolvable | (IResolvable | Word)[] | A list of words to configure for the guardrail. |
managedWordListsConfig?
Type:
IResolvable | (IResolvable | Managed)[]
(optional)
A list of managed words to configure for the guardrail.
wordsConfig?
Type:
IResolvable | (IResolvable | Word)[]
(optional)
A list of words to configure for the guardrail.

.NET
Go
Java
Python
TypeScript