Struct rusoto_lambda::UpdateEventSourceMappingRequest[][src]

pub struct UpdateEventSourceMappingRequest {
    pub batch_size: Option<i64>,
    pub enabled: Option<bool>,
    pub function_name: Option<String>,
    pub uuid: String,
}

Fields

The maximum number of stream records that can be sent to your Lambda function for a single invocation.

Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.

The Lambda function to which you want the stream records sent.

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.

If you are using versioning, you can also provide a qualified function ARN (ARN that is qualified with function version or alias name as suffix). For more information about versioning, see AWS Lambda Function Versioning and Aliases

Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length.

The event source mapping identifier.

Trait Implementations

impl Default for UpdateEventSourceMappingRequest
[src]

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

impl Debug for UpdateEventSourceMappingRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateEventSourceMappingRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateEventSourceMappingRequest
[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