[−][src]Struct rusoto_lambda::EventSourceMappingConfiguration
A mapping between an AWS resource and an AWS Lambda function. See CreateEventSourceMapping for details.
Fields
batch_size: Option<i64>
The maximum number of items to retrieve in a single batch.
event_source_arn: Option<String>
The Amazon Resource Name (ARN) of the event source.
function_arn: Option<String>
The ARN of the Lambda function.
last_modified: Option<f64>
The date that the event source mapping was last updated.
last_processing_result: Option<String>
The result of the last AWS Lambda invocation of your Lambda function.
state: Option<String>
The state of the event source mapping. It can be one of the following: Creating
, Enabling
, Enabled
, Disabling
, Disabled
, Updating
, or Deleting
.
state_transition_reason: Option<String>
The cause of the last state change, either User initiated
or Lambda initiated
.
uuid: Option<String>
The identifier of the event source mapping.
Trait Implementations
impl PartialEq<EventSourceMappingConfiguration> for EventSourceMappingConfiguration
[src]
fn eq(&self, other: &EventSourceMappingConfiguration) -> bool
[src]
fn ne(&self, other: &EventSourceMappingConfiguration) -> bool
[src]
impl Default for EventSourceMappingConfiguration
[src]
impl Clone for EventSourceMappingConfiguration
[src]
fn clone(&self) -> EventSourceMappingConfiguration
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for EventSourceMappingConfiguration
[src]
impl<'de> Deserialize<'de> for EventSourceMappingConfiguration
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for EventSourceMappingConfiguration
impl Sync for EventSourceMappingConfiguration
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self