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 event source.
-
Amazon Kinesis - The ARN of the data stream or a stream consumer.
-
Amazon DynamoDB Streams - The ARN of the stream.
-
Amazon Simple Queue Service - The ARN of the queue.
function_name: Option<String>
The name of the Lambda function.
Name formats
-
Function name -
MyFunction
. -
Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:MyFunction
. -
Version or Alias ARN -
arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD
. -
Partial ARN -
123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.
marker: Option<String>
A pagination token returned by a previous call.
max_items: Option<i64>
The maximum number of event source mappings to return.
Trait Implementations§
Source§impl Clone for ListEventSourceMappingsRequest
impl Clone for ListEventSourceMappingsRequest
Source§fn clone(&self) -> ListEventSourceMappingsRequest
fn clone(&self) -> ListEventSourceMappingsRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ListEventSourceMappingsRequest
impl Default for ListEventSourceMappingsRequest
Source§fn default() -> ListEventSourceMappingsRequest
fn default() -> ListEventSourceMappingsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListEventSourceMappingsRequest
impl PartialEq for ListEventSourceMappingsRequest
Source§fn eq(&self, other: &ListEventSourceMappingsRequest) -> bool
fn eq(&self, other: &ListEventSourceMappingsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListEventSourceMappingsRequest
Auto Trait Implementations§
impl Freeze for ListEventSourceMappingsRequest
impl RefUnwindSafe for ListEventSourceMappingsRequest
impl Send for ListEventSourceMappingsRequest
impl Sync for ListEventSourceMappingsRequest
impl Unpin for ListEventSourceMappingsRequest
impl UnwindSafe for ListEventSourceMappingsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more