[−][src]Struct rusoto_sqs::MessageAttributeValue
The user-specified message 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. All parts of the message attribute, including Name
, Type
, and Value
, are part of the message size restriction (256 KB or 262,144 bytes).
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 PartialEq<MessageAttributeValue> for MessageAttributeValue
[src]
fn eq(&self, other: &MessageAttributeValue) -> bool
[src]
fn ne(&self, other: &MessageAttributeValue) -> bool
[src]
impl Default for MessageAttributeValue
[src]
fn default() -> MessageAttributeValue
[src]
impl Clone for MessageAttributeValue
[src]
fn clone(&self) -> MessageAttributeValue
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for MessageAttributeValue
[src]
Auto Trait Implementations
impl Send for MessageAttributeValue
impl Sync for MessageAttributeValue
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self