Module: Aws::SageMakerRuntime::Types
- Defined in:
- lib/aws-sdk-sagemakerruntime/types.rb
Defined Under Namespace
Classes: InternalDependencyException, InternalFailure, InternalStreamFailure, InvokeEndpointAsyncInput, InvokeEndpointAsyncOutput, InvokeEndpointInput, InvokeEndpointOutput, InvokeEndpointWithResponseStreamInput, InvokeEndpointWithResponseStreamOutput, ModelError, ModelNotReadyException, ModelStreamError, PayloadPart, ResponseStream, ServiceUnavailable, ValidationError
Instance Attribute Summary collapse
-
#bytes ⇒ String
A blob that contains part of the response for your streaming inference request.
-
#error_code ⇒ String
This error can have the following error codes:.
- #message ⇒ String
Instance Attribute Details
#bytes ⇒ String
A blob that contains part of the response for your streaming inference request.
638 639 640 641 642 643 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 638 class PayloadPart < Struct.new( :bytes, :event_type) SENSITIVE = [:bytes] include Aws::Structure end |
#error_code ⇒ String
This error can have the following error codes:
ModelInvocationTimeExceeded
: The model failed to finish sending the response within the timeout
period allowed by Amazon SageMaker.
StreamBroken
: The Transmission Control Protocol (TCP) connection between the
client and the model was reset or closed.
619 620 621 622 623 624 625 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 619 class ModelStreamError < Struct.new( :message, :error_code, :event_type) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
48 49 50 51 52 53 |
# File 'lib/aws-sdk-sagemakerruntime/types.rb', line 48 class InternalStreamFailure < Struct.new( :message, :event_type) SENSITIVE = [] include Aws::Structure end |