pub struct LambdaErrorMapping {
pub rust_error_type: String,
pub status_code: Option<u16>,
pub error_message_template: String,
pub include_stack_trace: bool,
pub retry_strategy: RetryStrategy,
}Fields§
§rust_error_type: String§status_code: Option<u16>§error_message_template: String§include_stack_trace: bool§retry_strategy: RetryStrategyTrait Implementations§
Source§impl Clone for LambdaErrorMapping
impl Clone for LambdaErrorMapping
Source§fn clone(&self) -> LambdaErrorMapping
fn clone(&self) -> LambdaErrorMapping
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LambdaErrorMapping
impl RefUnwindSafe for LambdaErrorMapping
impl Send for LambdaErrorMapping
impl Sync for LambdaErrorMapping
impl Unpin for LambdaErrorMapping
impl UnwindSafe for LambdaErrorMapping
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