[][src]Struct rusoto_sqs::MessageSystemAttributeValue

pub struct MessageSystemAttributeValue {
    pub binary_list_values: Option<Vec<Bytes>>,
    pub binary_value: Option<Bytes>,
    pub data_type: String,
    pub string_list_values: Option<Vec<String>>,
    pub string_value: Option<String>,
}

The user-specified message system attribute value. For string data types, the Value attribute has the same restrictions on the content as the message body. For more information, see SendMessage.

Name, type, value and the message body must not be empty or null.

Fields

binary_list_values: Option<Vec<Bytes>>

Not implemented. Reserved for future use.

binary_value: Option<Bytes>

Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.

data_type: String

Amazon SQS supports the following logical data types: String, Number, and Binary. For the Number data type, you must use StringValue.

You can also append custom labels. For more information, see Amazon SQS Message Attributes in the Amazon Simple Queue Service Developer Guide.

string_list_values: Option<Vec<String>>

Not implemented. Reserved for future use.

string_value: Option<String>

Strings are Unicode with UTF-8 binary encoding. For a list of code values, see ASCII Printable Characters.

Trait Implementations

impl Clone for MessageSystemAttributeValue[src]

impl Debug for MessageSystemAttributeValue[src]

impl Default for MessageSystemAttributeValue[src]

impl PartialEq<MessageSystemAttributeValue> for MessageSystemAttributeValue[src]

impl StructuralPartialEq for MessageSystemAttributeValue[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> 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.