Cloneable
, ReadLimitInfo
, ToCopyableBuilder<InvokeRequest.Builder,InvokeRequest>
@Generated("software.amazon.awssdk:codegen") public class InvokeRequest extends AmazonWebServiceRequest implements ToCopyableBuilder<InvokeRequest.Builder,InvokeRequest>
Modifier and Type | Class | Description |
---|---|---|
static interface |
InvokeRequest.Builder |
NOOP
Modifier and Type | Method | Description |
---|---|---|
static InvokeRequest.Builder |
builder() |
|
String |
clientContext() |
Using the
ClientContext you can pass client-specific information to the Lambda function you are
invoking. |
boolean |
equals(Object obj) |
|
String |
functionName() |
The Lambda function name.
|
int |
hashCode() |
|
String |
invocationType() |
By default, the
Invoke API assumes RequestResponse invocation type. |
String |
logType() |
You can set this optional parameter to
Tail in the request only if you specify the
InvocationType parameter with value RequestResponse . |
ByteBuffer |
payload() |
JSON that you want to provide to your Lambda function as input.
|
String |
qualifier() |
You can use this optional parameter to specify a Lambda function version or alias name.
|
static Class<? extends InvokeRequest.Builder> |
serializableBuilderClass() |
|
InvokeRequest.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
clone, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout
public String functionName()
The Lambda function name.
You can specify a function name (for example, Thumbnail
) or you can specify Amazon Resource Name
(ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail
). AWS
Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail
). Note that the
length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters
in length.
You can specify a function name (for example, Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
). AWS Lambda also allows you to
specify a partial ARN (for example, account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length.
public String invocationType()
By default, the Invoke
API assumes RequestResponse
invocation type. You can optionally
request asynchronous execution by specifying Event
as the InvocationType
. You can also
use this parameter to request AWS Lambda to not execute the function but do some verification, such as if the
caller is authorized to invoke the function and if the inputs are valid. You request this by specifying
DryRun
as the InvocationType
. This is useful in a cross-account scenario when you want
to verify access to a function without running it.
Invoke
API assumes RequestResponse
invocation type. You can
optionally request asynchronous execution by specifying Event
as the
InvocationType
. You can also use this parameter to request AWS Lambda to not execute the
function but do some verification, such as if the caller is authorized to invoke the function and if the
inputs are valid. You request this by specifying DryRun
as the InvocationType
.
This is useful in a cross-account scenario when you want to verify access to a function without running
it.InvocationType
public String logType()
You can set this optional parameter to Tail
in the request only if you specify the
InvocationType
parameter with value RequestResponse
. In this case, AWS Lambda returns
the base64-encoded last 4 KB of log data produced by your Lambda function in the x-amz-log-result
header.
Tail
in the request only if you specify the
InvocationType
parameter with value RequestResponse
. In this case, AWS Lambda
returns the base64-encoded last 4 KB of log data produced by your Lambda function in the
x-amz-log-result
header.LogType
public String clientContext()
Using the ClientContext
you can pass client-specific information to the Lambda function you are
invoking. You can then process the client information in your Lambda function as you choose through the context
variable. For an example of a ClientContext
JSON, see PutEvents in the Amazon Mobile
Analytics API Reference and User Guide.
The ClientContext JSON must be base64-encoded.
ClientContext
you can pass client-specific information to the Lambda function you
are invoking. You can then process the client information in your Lambda function as you choose through
the context variable. For an example of a ClientContext
JSON, see PutEvents in the Amazon
Mobile Analytics API Reference and User Guide.
The ClientContext JSON must be base64-encoded.
public ByteBuffer payload()
JSON that you want to provide to your Lambda function as input.
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
.
public String qualifier()
You can use this optional parameter to specify a Lambda function version or alias name. If you specify a function version, the API uses the qualified function ARN to invoke a specific Lambda function. If you specify an alias name, the API uses the alias ARN to invoke the Lambda function version to which the alias points.
If you don't provide this parameter, then the API uses unqualified function ARN which results in invocation of
the $LATEST
version.
If you don't provide this parameter, then the API uses unqualified function ARN which results in
invocation of the $LATEST
version.
public InvokeRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<InvokeRequest.Builder,InvokeRequest>
public static InvokeRequest.Builder builder()
public static Class<? extends InvokeRequest.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.