Class: Aws::Bedrock::Types::GuardrailTopicsTier
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::GuardrailTopicsTier
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
The tier that your guardrail uses for denied topic filters.
Constant Summary collapse
- SENSITIVE =
[:tier_name]
Instance Attribute Summary collapse
-
#tier_name ⇒ String
The tier that your guardrail uses for denied topic filters.
Instance Attribute Details
#tier_name ⇒ String
The tier that your guardrail uses for denied topic filters. Valid values include:
-
‘CLASSIC` tier – Provides established guardrails functionality supporting English, French, and Spanish languages.
-
‘STANDARD` tier – Provides a more robust solution than the `CLASSIC` tier and has more comprehensive language support. This tier requires that your guardrail use [cross-Region inference].
[1]: docs.aws.amazon.com/bedrock/latest/userguide/guardrails-cross-region.html
8159 8160 8161 8162 8163 |
# File 'lib/aws-sdk-bedrock/types.rb', line 8159 class GuardrailTopicsTier < Struct.new( :tier_name) SENSITIVE = [:tier_name] include Aws::Structure end |