Struct aws_sdk_sns::model::MessageAttributeValue
source · #[non_exhaustive]pub struct MessageAttributeValue { /* private fields */ }
Expand description
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 Publish.
Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes). For more information, see Amazon SNS message attributes and Publishing to a mobile phone in the Amazon SNS Developer Guide.
Implementations§
source§impl MessageAttributeValue
impl MessageAttributeValue
sourcepub fn data_type(&self) -> Option<&str>
pub fn data_type(&self) -> Option<&str>
Amazon SNS supports the following logical data types: String, String.Array, Number, and Binary. For more information, see Message Attribute Data Types.
sourcepub fn string_value(&self) -> Option<&str>
pub fn string_value(&self) -> Option<&str>
Strings are Unicode with UTF8 binary encoding. For a list of code values, see ASCII Printable Characters.
sourcepub fn binary_value(&self) -> Option<&Blob>
pub fn binary_value(&self) -> Option<&Blob>
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
source§impl MessageAttributeValue
impl MessageAttributeValue
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MessageAttributeValue
.
Trait Implementations§
source§impl Clone for MessageAttributeValue
impl Clone for MessageAttributeValue
source§fn clone(&self) -> MessageAttributeValue
fn clone(&self) -> MessageAttributeValue
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MessageAttributeValue
impl Debug for MessageAttributeValue
source§impl PartialEq<MessageAttributeValue> for MessageAttributeValue
impl PartialEq<MessageAttributeValue> for MessageAttributeValue
source§fn eq(&self, other: &MessageAttributeValue) -> bool
fn eq(&self, other: &MessageAttributeValue) -> bool
self
and other
values to be equal, and is used
by ==
.