Class: Aws::BedrockRuntime::Types::InvokeModelResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::InvokeModelResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:body]
Instance Attribute Summary collapse
-
#body ⇒ String
Inference response from the model in the format specified in the
contentTypeheader. -
#content_type ⇒ String
The MIME type of the inference result.
-
#performance_config_latency ⇒ String
Model performance settings for the request.
-
#service_tier ⇒ String
Specifies the processing tier type used for serving the request.
Instance Attribute Details
#body ⇒ String
Inference response from the model in the format specified in the contentType header. To see the format and content of the request and response bodies for different models, refer to [Inference parameters].
[1]: docs.aws.amazon.com/bedrock/latest/userguide/model-parameters.html
3372 3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 3372 class InvokeModelResponse < Struct.new( :body, :content_type, :performance_config_latency, :service_tier) SENSITIVE = [:body] include Aws::Structure end |
#content_type ⇒ String
The MIME type of the inference result.
3372 3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 3372 class InvokeModelResponse < Struct.new( :body, :content_type, :performance_config_latency, :service_tier) SENSITIVE = [:body] include Aws::Structure end |
#performance_config_latency ⇒ String
Model performance settings for the request.
3372 3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 3372 class InvokeModelResponse < Struct.new( :body, :content_type, :performance_config_latency, :service_tier) SENSITIVE = [:body] include Aws::Structure end |
#service_tier ⇒ String
Specifies the processing tier type used for serving the request.
3372 3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 3372 class InvokeModelResponse < Struct.new( :body, :content_type, :performance_config_latency, :service_tier) SENSITIVE = [:body] include Aws::Structure end |