public class InvokeRequest extends AmazonWebServiceRequest implements Serializable
Invokes a specific Lambda function. For an example, see Create the Lambda Function and Test It Manually.
If you are using the versioning feature, you can invoke the specific function
version by providing function version or alias name that is pointing to the
function version using the Qualifier
parameter in the request.
If you don't provide the Qualifier
parameter, the
$LATEST
version of the Lambda function is invoked. Invocations
occur at least once in response to an event and functions must be idempotent
to handle this. For information about the versioning feature, see AWS Lambda Function Versioning and Aliases.
This operation requires permission for the lambda:InvokeFunction
action.
The TooManyRequestsException
noted below will return the
following: ConcurrentInvocationLimitExceeded
will be returned if
you have no functions with reserved concurrency and have exceeded your
account concurrent limit or if a function without reserved concurrency
exceeds the account's unreserved concurrency limit.
ReservedFunctionConcurrentInvocationLimitExceeded
will be
returned when a function with reserved concurrency exceeds its configured
concurrency limit.
Constructor and Description |
---|
InvokeRequest() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getClientContext()
Using the
ClientContext you can pass client-specific
information to the Lambda function you are invoking. |
String |
getFunctionName()
The Lambda function name.
|
String |
getInvocationType()
By default, the
Invoke API assumes
RequestResponse invocation type. |
String |
getLogType()
You can set this optional parameter to
Tail in the request
only if you specify the InvocationType parameter with value
RequestResponse . |
ByteBuffer |
getPayload()
JSON that you want to provide to your Lambda function as input.
|
String |
getQualifier()
You can use this optional parameter to specify a Lambda function version
or alias name.
|
int |
hashCode() |
void |
setClientContext(String clientContext)
Using the
ClientContext you can pass client-specific
information to the Lambda function you are invoking. |
void |
setFunctionName(String functionName)
The Lambda function name.
|
void |
setInvocationType(InvocationType invocationType)
By default, the
Invoke API assumes
RequestResponse invocation type. |
void |
setInvocationType(String invocationType)
By default, the
Invoke API assumes
RequestResponse invocation type. |
void |
setLogType(LogType logType)
You can set this optional parameter to
Tail in the request
only if you specify the InvocationType parameter with value
RequestResponse . |
void |
setLogType(String logType)
You can set this optional parameter to
Tail in the request
only if you specify the InvocationType parameter with value
RequestResponse . |
void |
setPayload(ByteBuffer payload)
JSON that you want to provide to your Lambda function as input.
|
void |
setQualifier(String qualifier)
You can use this optional parameter to specify a Lambda function version
or alias name.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
InvokeRequest |
withClientContext(String clientContext)
Using the
ClientContext you can pass client-specific
information to the Lambda function you are invoking. |
InvokeRequest |
withFunctionName(String functionName)
The Lambda function name.
|
InvokeRequest |
withInvocationType(InvocationType invocationType)
By default, the
Invoke API assumes
RequestResponse invocation type. |
InvokeRequest |
withInvocationType(String invocationType)
By default, the
Invoke API assumes
RequestResponse invocation type. |
InvokeRequest |
withLogType(LogType logType)
You can set this optional parameter to
Tail in the request
only if you specify the InvocationType parameter with value
RequestResponse . |
InvokeRequest |
withLogType(String logType)
You can set this optional parameter to
Tail in the request
only if you specify the InvocationType parameter with value
RequestResponse . |
InvokeRequest |
withPayload(ByteBuffer payload)
JSON that you want to provide to your Lambda function as input.
|
InvokeRequest |
withQualifier(String qualifier)
You can use this optional parameter to specify a Lambda function version
or alias name.
|
clone, copyBaseTo, getCloneRoot, getCloneSource, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public String getFunctionName()
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.
Constraints:
Length: 1 - 170
Pattern:
(arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function
:)?([a-zA-Z0-9-_\.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
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.
public void setFunctionName(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.
Constraints:
Length: 1 - 170
Pattern:
(arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function
:)?([a-zA-Z0-9-_\.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
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.
public InvokeRequest withFunctionName(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.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 170
Pattern:
(arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function
:)?([a-zA-Z0-9-_\.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
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.
public String getInvocationType()
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.
Constraints:
Allowed Values: Event, RequestResponse, DryRun
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.
InvocationType
public void setInvocationType(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.
Constraints:
Allowed Values: Event, RequestResponse, DryRun
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.
InvocationType
public InvokeRequest withInvocationType(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.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: Event, RequestResponse, DryRun
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.
InvocationType
public void setInvocationType(InvocationType 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.
Constraints:
Allowed Values: Event, RequestResponse, DryRun
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.
InvocationType
public InvokeRequest withInvocationType(InvocationType 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.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: Event, RequestResponse, DryRun
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.
InvocationType
public String getLogType()
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.
Constraints:
Allowed Values: None, Tail
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.
LogType
public void setLogType(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.
Constraints:
Allowed Values: None, Tail
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.
LogType
public InvokeRequest withLogType(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.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: None, Tail
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.
LogType
public void setLogType(LogType 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.
Constraints:
Allowed Values: None, Tail
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.
LogType
public InvokeRequest withLogType(LogType 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.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: None, Tail
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.
LogType
public String getClientContext()
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 and has a maximum size of 3583 bytes.
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 and has a maximum size of 3583 bytes.
public void setClientContext(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 and has a maximum size of 3583 bytes.
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 and has a maximum size of 3583 bytes.
public InvokeRequest withClientContext(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 and has a maximum size of 3583 bytes.
Returns a reference to this object so that method calls can be chained together.
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 and has a maximum size of 3583 bytes.
public ByteBuffer getPayload()
JSON that you want to provide to your Lambda function as input.
JSON that you want to provide to your Lambda function as input.
public void setPayload(ByteBuffer payload)
JSON that you want to provide to your Lambda function as input.
payload
- JSON that you want to provide to your Lambda function as input.
public InvokeRequest withPayload(ByteBuffer payload)
JSON that you want to provide to your Lambda function as input.
Returns a reference to this object so that method calls can be chained together.
payload
- JSON that you want to provide to your Lambda function as input.
public String getQualifier()
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.
Constraints:
Length: 1 - 128
Pattern: (|[a-zA-Z0-9$_-]+)
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.
public void setQualifier(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.
Constraints:
Length: 1 - 128
Pattern: (|[a-zA-Z0-9$_-]+)
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.
public InvokeRequest withQualifier(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.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 128
Pattern: (|[a-zA-Z0-9$_-]+)
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.
public String toString()
toString
in class Object
Object.toString()
Copyright © 2018. All rights reserved.