Struct rusoto_lambda::PutFunctionConcurrencyRequest[][src]

pub struct PutFunctionConcurrencyRequest {
    pub function_name: String,
    pub reserved_concurrent_executions: i64,
}

Fields

The name of the function you are setting concurrent execution limits on. For more information, see concurrent-executions.

The concurrent execution limit reserved for this function. For more information, see concurrent-executions.

Trait Implementations

impl Default for PutFunctionConcurrencyRequest
[src]

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

impl Debug for PutFunctionConcurrencyRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PutFunctionConcurrencyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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