pub struct AwsSqsConfig {
pub region: String,
pub access_key_id: Option<String>,
pub secret_access_key: Option<String>,
pub use_fifo_queues: bool,
}Expand description
AWS SQS configuration
Fields§
§region: String§access_key_id: Option<String>§secret_access_key: Option<String>§use_fifo_queues: boolTrait Implementations§
Source§impl Clone for AwsSqsConfig
impl Clone for AwsSqsConfig
Source§fn clone(&self) -> AwsSqsConfig
fn clone(&self) -> AwsSqsConfig
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 Debug for AwsSqsConfig
impl Debug for AwsSqsConfig
Source§impl<'de> Deserialize<'de> for AwsSqsConfig
impl<'de> Deserialize<'de> for AwsSqsConfig
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
Auto Trait Implementations§
impl Freeze for AwsSqsConfig
impl RefUnwindSafe for AwsSqsConfig
impl Send for AwsSqsConfig
impl Sync for AwsSqsConfig
impl Unpin for AwsSqsConfig
impl UnsafeUnpin for AwsSqsConfig
impl UnwindSafe for AwsSqsConfig
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