Struct rusoto_lambda::InvokeAsyncRequest[][src]

pub struct InvokeAsyncRequest {
    pub function_name: String,
    pub invoke_args: Vec<u8>,
}

Fields

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.

JSON that you want to provide to your Lambda function as input.

Trait Implementations

impl Default for InvokeAsyncRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for InvokeAsyncRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for InvokeAsyncRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InvokeAsyncRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations