ToCopyableBuilder<InvokeResponse.Builder,InvokeResponse>
@Generated("software.amazon.awssdk:codegen") public class InvokeResponse extends AmazonWebServiceResult<ResponseMetadata> implements ToCopyableBuilder<InvokeResponse.Builder,InvokeResponse>
Upon success, returns an empty response. Otherwise, throws an exception.
Modifier and Type | Class | Description |
---|---|---|
static interface |
InvokeResponse.Builder |
Modifier and Type | Method | Description |
---|---|---|
static InvokeResponse.Builder |
builder() |
|
boolean |
equals(Object obj) |
|
String |
functionError() |
Indicates whether an error occurred while executing the Lambda function.
|
int |
hashCode() |
|
String |
logResult() |
It is the base64-encoded logs for the Lambda function invocation.
|
ByteBuffer |
payload() |
It is the JSON representation of the object returned by the Lambda function.
|
static Class<? extends InvokeResponse.Builder> |
serializableBuilderClass() |
|
Integer |
statusCode() |
The HTTP status code will be in the 200 range for successful request.
|
InvokeResponse.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
setSdkHttpMetadata, setSdkResponseMetadata
public Integer statusCode()
The HTTP status code will be in the 200 range for successful request. For the RequestResponse
invocation type this status code will be 200. For the Event
invocation type this status code will be
202. For the DryRun
invocation type the status code will be 204.
RequestResponse
invocation type this status code will be 200. For the Event
invocation type this status code will be 202. For the DryRun
invocation type the status code
will be 204.public String functionError()
Indicates whether an error occurred while executing the Lambda function. If an error occurred this field will
have one of two values; Handled
or Unhandled
. Handled
errors are errors
that are reported by the function while the Unhandled
errors are those detected and reported by AWS
Lambda. Unhandled errors include out of memory errors and function timeouts. For information about how to report
an Handled
error, see Programming Model.
Handled
or Unhandled
. Handled
errors
are errors that are reported by the function while the Unhandled
errors are those detected
and reported by AWS Lambda. Unhandled errors include out of memory errors and function timeouts. For
information about how to report an Handled
error, see Programming Model.public String logResult()
It is the base64-encoded logs for the Lambda function invocation. This is present only if the invocation type is
RequestResponse
and the logs were requested.
RequestResponse
and the logs were requested.public ByteBuffer payload()
It is the JSON representation of the object returned by the Lambda function. This is present only if the
invocation type is RequestResponse
.
In the event of a function error this field contains a message describing the error. For the Handled
errors the Lambda function will report this message. For Unhandled
errors AWS Lambda reports the
message.
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
.
RequestResponse
.
In the event of a function error this field contains a message describing the error. For the
Handled
errors the Lambda function will report this message. For Unhandled
errors AWS Lambda reports the message.
public InvokeResponse.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<InvokeResponse.Builder,InvokeResponse>
public static InvokeResponse.Builder builder()
public static Class<? extends InvokeResponse.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.