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
batch_size: Option<i64>
The maximum number of stream records that can be sent to your Lambda function for a single invocation.
enabled: Option<bool>
Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.
function_name: Option<String>
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.
uuid: String
The event source mapping identifier.
Trait Implementations
impl Default for UpdateEventSourceMappingRequest[src]
impl Default for UpdateEventSourceMappingRequestfn default() -> UpdateEventSourceMappingRequest[src]
fn default() -> UpdateEventSourceMappingRequestReturns the "default value" for a type. Read more
impl Debug for UpdateEventSourceMappingRequest[src]
impl Debug for UpdateEventSourceMappingRequestfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for UpdateEventSourceMappingRequest[src]
impl Clone for UpdateEventSourceMappingRequestfn clone(&self) -> UpdateEventSourceMappingRequest[src]
fn clone(&self) -> UpdateEventSourceMappingRequestReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for UpdateEventSourceMappingRequest[src]
impl PartialEq for UpdateEventSourceMappingRequestfn eq(&self, other: &UpdateEventSourceMappingRequest) -> bool[src]
fn eq(&self, other: &UpdateEventSourceMappingRequest) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &UpdateEventSourceMappingRequest) -> bool[src]
fn ne(&self, other: &UpdateEventSourceMappingRequest) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for UpdateEventSourceMappingRequest
impl Send for UpdateEventSourceMappingRequestimpl Sync for UpdateEventSourceMappingRequest
impl Sync for UpdateEventSourceMappingRequest