interface ContentFiltersTierConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnGuardrail.ContentFiltersTierConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnGuardrail_ContentFiltersTierConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnGuardrail.ContentFiltersTierConfigProperty |
Python | aws_cdk.aws_bedrock.CfnGuardrail.ContentFiltersTierConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnGuardrail » ContentFiltersTierConfigProperty |
The tier that your guardrail uses for content filters.
Consider using a tier that balances performance, accuracy, and compatibility with your existing generative AI workflows.
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 contentFiltersTierConfigProperty: bedrock.CfnGuardrail.ContentFiltersTierConfigProperty = {
tierName: 'tierName',
};
Properties
| Name | Type | Description |
|---|---|---|
| tier | string | The tier that your guardrail uses for content filters. Valid values include:. |
tierName
Type:
string
The tier that your guardrail uses for content filters. Valid values include:.
CLASSICtier – Provides established guardrails functionality supporting English, French, and Spanish languages.STANDARDtier – Provides a more robust solution than theCLASSICtier and has more comprehensive language support. This tier requires that your guardrail use cross-Region inference .

.NET
Go
Java
Python
TypeScript