Struct rusoto_lambda::ListEventSourceMappingsRequest [−][src]
pub struct ListEventSourceMappingsRequest {
pub event_source_arn: Option<String>,
pub function_name: Option<String>,
pub marker: Option<String>,
pub max_items: Option<i64>,
}Fields
event_source_arn: Option<String>
The Amazon Resource Name (ARN) of the Amazon Kinesis stream. (This parameter is optional.)
function_name: Option<String>
The name of the Lambda function.
You can specify the 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). 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). AWS Lambda also allows you to specify only the function name with the account ID qualifier (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.
marker: Option<String>
Optional string. An opaque pagination token returned from a previous ListEventSourceMappings operation. If present, specifies to continue the list from where the returning call left off.
max_items: Option<i64>
Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.
Trait Implementations
impl Default for ListEventSourceMappingsRequest[src]
impl Default for ListEventSourceMappingsRequestfn default() -> ListEventSourceMappingsRequest[src]
fn default() -> ListEventSourceMappingsRequestReturns the "default value" for a type. Read more
impl Debug for ListEventSourceMappingsRequest[src]
impl Debug for ListEventSourceMappingsRequestfn 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 ListEventSourceMappingsRequest[src]
impl Clone for ListEventSourceMappingsRequestfn clone(&self) -> ListEventSourceMappingsRequest[src]
fn clone(&self) -> ListEventSourceMappingsRequestReturns 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 ListEventSourceMappingsRequest[src]
impl PartialEq for ListEventSourceMappingsRequestfn eq(&self, other: &ListEventSourceMappingsRequest) -> bool[src]
fn eq(&self, other: &ListEventSourceMappingsRequest) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ListEventSourceMappingsRequest) -> bool[src]
fn ne(&self, other: &ListEventSourceMappingsRequest) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for ListEventSourceMappingsRequest
impl Send for ListEventSourceMappingsRequestimpl Sync for ListEventSourceMappingsRequest
impl Sync for ListEventSourceMappingsRequest