Class: Aws::Bedrock::Types::GuardrailContentFiltersTierConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::GuardrailContentFiltersTierConfig
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[:tier_name]
Instance Attribute Summary collapse
-
#tier_name ⇒ String
The tier that your guardrail uses for content filters.
Instance Attribute Details
#tier_name ⇒ String
The tier that your guardrail uses for content filters. Valid values include:
CLASSIC
tier – Provides established guardrails functionality supporting English, French, and Spanish languages.STANDARD
tier – Provides a more robust solution than theCLASSIC
tier and has more comprehensive language support. This tier requires that your guardrail use cross-Region inference.
4363 4364 4365 4366 4367 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4363 class GuardrailContentFiltersTierConfig < Struct.new( :tier_name) SENSITIVE = [:tier_name] include Aws::Structure end |