pub struct AwsLambdaFunctionDeadLetterConfig {
pub target_arn: Option<String>,
}
Expand description
The dead-letter queue for failed asynchronous invocations.
Fields§
§target_arn: Option<String>
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
Trait Implementations§
Source§impl Clone for AwsLambdaFunctionDeadLetterConfig
impl Clone for AwsLambdaFunctionDeadLetterConfig
Source§fn clone(&self) -> AwsLambdaFunctionDeadLetterConfig
fn clone(&self) -> AwsLambdaFunctionDeadLetterConfig
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 moreSource§impl Default for AwsLambdaFunctionDeadLetterConfig
impl Default for AwsLambdaFunctionDeadLetterConfig
Source§fn default() -> AwsLambdaFunctionDeadLetterConfig
fn default() -> AwsLambdaFunctionDeadLetterConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsLambdaFunctionDeadLetterConfig
impl<'de> Deserialize<'de> for AwsLambdaFunctionDeadLetterConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsLambdaFunctionDeadLetterConfig
impl PartialEq for AwsLambdaFunctionDeadLetterConfig
Source§fn eq(&self, other: &AwsLambdaFunctionDeadLetterConfig) -> bool
fn eq(&self, other: &AwsLambdaFunctionDeadLetterConfig) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AwsLambdaFunctionDeadLetterConfig
Auto Trait Implementations§
impl Freeze for AwsLambdaFunctionDeadLetterConfig
impl RefUnwindSafe for AwsLambdaFunctionDeadLetterConfig
impl Send for AwsLambdaFunctionDeadLetterConfig
impl Sync for AwsLambdaFunctionDeadLetterConfig
impl Unpin for AwsLambdaFunctionDeadLetterConfig
impl UnwindSafe for AwsLambdaFunctionDeadLetterConfig
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