Class: Aws::SageMakerRuntime::Types::InvokeEndpointWithResponseStreamOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerRuntime::Types::InvokeEndpointWithResponseStreamOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemakerruntime/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:custom_attributes]
Instance Attribute Summary collapse
-
#body ⇒ Types::ResponseStream
A stream of payload parts.
-
#content_type ⇒ String
The MIME type of the inference returned from the model container.
-
#custom_attributes ⇒ String
Provides additional information in the response about the inference returned by a model hosted at an Amazon SageMaker endpoint.
-
#invoked_production_variant ⇒ String
Identifies the production variant that was invoked.
Instance Attribute Details
#body ⇒ Types::ResponseStream
A stream of payload parts. Each part contains a portion of the response for a streaming inference request.
534 535 536 537 538 539 540 541 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 534 class InvokeEndpointWithResponseStreamOutput < Struct.new( :body, :content_type, :invoked_production_variant, :custom_attributes) SENSITIVE = [:custom_attributes] include Aws::Structure end |
#content_type ⇒ String
The MIME type of the inference returned from the model container.
534 535 536 537 538 539 540 541 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 534 class InvokeEndpointWithResponseStreamOutput < Struct.new( :body, :content_type, :invoked_production_variant, :custom_attributes) SENSITIVE = [:custom_attributes] include Aws::Structure end |
#custom_attributes ⇒ String
Provides additional information in the response about the inference returned by a model hosted at an Amazon SageMaker endpoint. The information is an opaque value that is forwarded verbatim. You could use this value, for example, to return an ID received in the ‘CustomAttributes` header of a request or other metadata that a service endpoint was programmed to produce. The value must consist of no more than 1024 visible US-ASCII characters as specified in
- Section 3.3.6. Field Value Components][1
-
of the Hypertext Transfer
Protocol (HTTP/1.1). If the customer wants the custom attribute returned, the model must set the custom attribute to be included on the way back.
The code in your model is responsible for setting or updating any custom attributes in the response. If your code does not set this value in the response, an empty value is returned. For example, if a custom attribute represents the trace ID, your model can prepend the custom attribute with ‘Trace ID:` in your post-processing function.
This feature is currently supported in the Amazon Web Services SDKs but not in the Amazon SageMaker Python SDK.
534 535 536 537 538 539 540 541 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 534 class InvokeEndpointWithResponseStreamOutput < Struct.new( :body, :content_type, :invoked_production_variant, :custom_attributes) SENSITIVE = [:custom_attributes] include Aws::Structure end |
#invoked_production_variant ⇒ String
Identifies the production variant that was invoked.
534 535 536 537 538 539 540 541 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 534 class InvokeEndpointWithResponseStreamOutput < Struct.new( :body, :content_type, :invoked_production_variant, :custom_attributes) SENSITIVE = [:custom_attributes] include Aws::Structure end |