pub struct AwsSqsQueueDetails {
pub dead_letter_target_arn: Option<String>,
pub kms_data_key_reuse_period_seconds: Option<i64>,
pub kms_master_key_id: Option<String>,
pub queue_name: Option<String>,
}Expand description
Data about a queue.
Fields§
§dead_letter_target_arn: Option<String>The Amazon Resource Name (ARN) of the dead-letter queue to which Amazon SQS moves messages after the value of maxReceiveCount is exceeded.
kms_data_key_reuse_period_seconds: Option<i64>The length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again.
kms_master_key_id: Option<String>The ID of an AWS managed customer master key (CMK) for Amazon SQS or a custom CMK.
queue_name: Option<String>The name of the new queue.
Trait Implementations§
Source§impl Clone for AwsSqsQueueDetails
impl Clone for AwsSqsQueueDetails
Source§fn clone(&self) -> AwsSqsQueueDetails
fn clone(&self) -> AwsSqsQueueDetails
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 AwsSqsQueueDetails
impl Debug for AwsSqsQueueDetails
Source§impl Default for AwsSqsQueueDetails
impl Default for AwsSqsQueueDetails
Source§fn default() -> AwsSqsQueueDetails
fn default() -> AwsSqsQueueDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsSqsQueueDetails
impl<'de> Deserialize<'de> for AwsSqsQueueDetails
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 AwsSqsQueueDetails
impl PartialEq for AwsSqsQueueDetails
Source§fn eq(&self, other: &AwsSqsQueueDetails) -> bool
fn eq(&self, other: &AwsSqsQueueDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AwsSqsQueueDetails
impl Serialize for AwsSqsQueueDetails
impl StructuralPartialEq for AwsSqsQueueDetails
Auto Trait Implementations§
impl Freeze for AwsSqsQueueDetails
impl RefUnwindSafe for AwsSqsQueueDetails
impl Send for AwsSqsQueueDetails
impl Sync for AwsSqsQueueDetails
impl Unpin for AwsSqsQueueDetails
impl UnsafeUnpin for AwsSqsQueueDetails
impl UnwindSafe for AwsSqsQueueDetails
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