Class: Aws::Lambda::Types::InvokeAsyncRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::InvokeAsyncRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass InvokeAsyncRequest data as a hash:
{
function_name: "NamespacedFunctionName", # required
invoke_args: "data", # required
}
Instance Attribute Summary collapse
-
#function_name ⇒ String
The Lambda function name.
-
#invoke_args ⇒ IO
JSON that you want to provide to your Lambda function as input.
Instance Attribute Details
#function_name ⇒ String
The Lambda function name. 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.
1490 1491 1492 1493 1494 |
# File 'lib/aws-sdk-lambda/types.rb', line 1490 class InvokeAsyncRequest < Struct.new( :function_name, :invoke_args) include Aws::Structure end |
#invoke_args ⇒ IO
JSON that you want to provide to your Lambda function as input.
1490 1491 1492 1493 1494 |
# File 'lib/aws-sdk-lambda/types.rb', line 1490 class InvokeAsyncRequest < Struct.new( :function_name, :invoke_args) include Aws::Structure end |