[][src]Struct rusoto_securityhub::AwsSqsQueueDetails

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>,
}

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

impl Clone for AwsSqsQueueDetails[src]

impl Debug for AwsSqsQueueDetails[src]

impl Default for AwsSqsQueueDetails[src]

impl<'de> Deserialize<'de> for AwsSqsQueueDetails[src]

impl PartialEq<AwsSqsQueueDetails> for AwsSqsQueueDetails[src]

impl Serialize for AwsSqsQueueDetails[src]

impl StructuralPartialEq for AwsSqsQueueDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.