pub struct EventInvokeConfig {
pub function_arn: String,
pub maximum_retry_attempts: Option<i32>,
pub maximum_event_age_in_seconds: Option<i32>,
pub destination_on_success: Option<String>,
pub destination_on_failure: Option<String>,
pub last_modified: f64,
}Fields§
§function_arn: String§maximum_retry_attempts: Option<i32>§maximum_event_age_in_seconds: Option<i32>§destination_on_success: Option<String>§destination_on_failure: Option<String>§last_modified: f64Trait Implementations§
Source§impl Clone for EventInvokeConfig
impl Clone for EventInvokeConfig
Source§fn clone(&self) -> EventInvokeConfig
fn clone(&self) -> EventInvokeConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventInvokeConfig
impl Debug for EventInvokeConfig
Source§impl Default for EventInvokeConfig
impl Default for EventInvokeConfig
Source§fn default() -> EventInvokeConfig
fn default() -> EventInvokeConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EventInvokeConfig
impl RefUnwindSafe for EventInvokeConfig
impl Send for EventInvokeConfig
impl Sync for EventInvokeConfig
impl Unpin for EventInvokeConfig
impl UnsafeUnpin for EventInvokeConfig
impl UnwindSafe for EventInvokeConfig
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