Class: Aws::BedrockRuntime::Types::JsonSchemaDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::JsonSchemaDefinition
- Defined in:
- gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb
Overview
JSON schema structured output format options.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of the JSON schema.
-
#name ⇒ String
The name of the JSON schema.
-
#schema ⇒ String
The JSON schema to constrain the model's output.
Instance Attribute Details
#description ⇒ String
A description of the JSON schema.
3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3620 class JsonSchemaDefinition < Struct.new( :schema, :name, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the JSON schema.
3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3620 class JsonSchemaDefinition < Struct.new( :schema, :name, :description) SENSITIVE = [] include Aws::Structure end |
#schema ⇒ String
The JSON schema to constrain the model's output. For more information, see JSON Schema Reference.
3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 3620 class JsonSchemaDefinition < Struct.new( :schema, :name, :description) SENSITIVE = [] include Aws::Structure end |