@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class InvokeEndpointRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
NOOP
Constructor and Description |
---|
InvokeEndpointRequest() |
Modifier and Type | Method and Description |
---|---|
InvokeEndpointRequest |
clone()
Creates a shallow clone of this object for all fields except the handler context.
|
boolean |
equals(Object obj) |
String |
getAccept()
The desired MIME type of the inference in the response.
|
ByteBuffer |
getBody()
Provides input data, in the format specified in the
ContentType request header. |
String |
getContentType()
The MIME type of the input data in the request body.
|
String |
getCustomAttributes()
|
String |
getEndpointName()
The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
|
int |
hashCode() |
void |
setAccept(String accept)
The desired MIME type of the inference in the response.
|
void |
setBody(ByteBuffer body)
Provides input data, in the format specified in the
ContentType request header. |
void |
setContentType(String contentType)
The MIME type of the input data in the request body.
|
void |
setCustomAttributes(String customAttributes)
|
void |
setEndpointName(String endpointName)
The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
|
String |
toString()
Returns a string representation of this object.
|
InvokeEndpointRequest |
withAccept(String accept)
The desired MIME type of the inference in the response.
|
InvokeEndpointRequest |
withBody(ByteBuffer body)
Provides input data, in the format specified in the
ContentType request header. |
InvokeEndpointRequest |
withContentType(String contentType)
The MIME type of the input data in the request body.
|
InvokeEndpointRequest |
withCustomAttributes(String customAttributes)
|
InvokeEndpointRequest |
withEndpointName(String endpointName)
The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
|
addHandlerContext, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getHandlerContext, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestCredentialsProvider, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
public void setEndpointName(String endpointName)
The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
endpointName
- The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.public String getEndpointName()
The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
public InvokeEndpointRequest withEndpointName(String endpointName)
The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.
endpointName
- The name of the endpoint that you specified when you created the endpoint using the CreateEndpoint API.public void setBody(ByteBuffer body)
Provides input data, in the format specified in the ContentType
request header. Amazon SageMaker
passes all of the data in the body to the model.
For information about the format of the request body, see Common Data Formats—Inference.
The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
body
- Provides input data, in the format specified in the ContentType
request header. Amazon
SageMaker passes all of the data in the body to the model.
For information about the format of the request body, see Common Data Formats—Inference.
public ByteBuffer getBody()
Provides input data, in the format specified in the ContentType
request header. Amazon SageMaker
passes all of the data in the body to the model.
For information about the format of the request body, see Common Data Formats—Inference.
ByteBuffer
s are stateful. Calling their get
methods changes their position
. We recommend
using ByteBuffer.asReadOnlyBuffer()
to create a read-only view of the buffer with an independent
position
, and calling get
methods on this rather than directly on the returned ByteBuffer
.
Doing so will ensure that anyone else using the ByteBuffer
will not be affected by changes to the
position
.
ContentType
request header. Amazon
SageMaker passes all of the data in the body to the model.
For information about the format of the request body, see Common Data Formats—Inference.
public InvokeEndpointRequest withBody(ByteBuffer body)
Provides input data, in the format specified in the ContentType
request header. Amazon SageMaker
passes all of the data in the body to the model.
For information about the format of the request body, see Common Data Formats—Inference.
The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
body
- Provides input data, in the format specified in the ContentType
request header. Amazon
SageMaker passes all of the data in the body to the model.
For information about the format of the request body, see Common Data Formats—Inference.
public void setContentType(String contentType)
The MIME type of the input data in the request body.
contentType
- The MIME type of the input data in the request body.public String getContentType()
The MIME type of the input data in the request body.
public InvokeEndpointRequest withContentType(String contentType)
The MIME type of the input data in the request body.
contentType
- The MIME type of the input data in the request body.public void setAccept(String accept)
The desired MIME type of the inference in the response.
accept
- The desired MIME type of the inference in the response.public String getAccept()
The desired MIME type of the inference in the response.
public InvokeEndpointRequest withAccept(String accept)
The desired MIME type of the inference in the response.
accept
- The desired MIME type of the inference in the response.public void setCustomAttributes(String customAttributes)
customAttributes
- public String getCustomAttributes()
public InvokeEndpointRequest withCustomAttributes(String customAttributes)
customAttributes
- public String toString()
toString
in class Object
Object.toString()
public InvokeEndpointRequest clone()
AmazonWebServiceRequest
clone
in class AmazonWebServiceRequest
Object.clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.