@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class MessageAttributeValue extends Object implements Serializable, Cloneable
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 Using Amazon SNS Message Attributes.
Constructor and Description |
---|
MessageAttributeValue() |
Modifier and Type | Method and Description |
---|---|
MessageAttributeValue |
clone() |
boolean |
equals(Object obj) |
ByteBuffer |
getBinaryValue()
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
|
String |
getDataType()
Amazon SNS supports the following logical data types: String, Number, and Binary.
|
String |
getStringValue()
Strings are Unicode with UTF8 binary encoding.
|
int |
hashCode() |
void |
setBinaryValue(ByteBuffer binaryValue)
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
|
void |
setDataType(String dataType)
Amazon SNS supports the following logical data types: String, Number, and Binary.
|
void |
setStringValue(String stringValue)
Strings are Unicode with UTF8 binary encoding.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
MessageAttributeValue |
withBinaryValue(ByteBuffer binaryValue)
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
|
MessageAttributeValue |
withDataType(String dataType)
Amazon SNS supports the following logical data types: String, Number, and Binary.
|
MessageAttributeValue |
withStringValue(String stringValue)
Strings are Unicode with UTF8 binary encoding.
|
public void setDataType(String dataType)
Amazon SNS supports the following logical data types: String, Number, and Binary. For more information, see Message Attribute Data Types.
dataType
- Amazon SNS supports the following logical data types: String, Number, and Binary. For more information,
see Message Attribute Data Types.public String getDataType()
Amazon SNS supports the following logical data types: String, Number, and Binary. For more information, see Message Attribute Data Types.
public MessageAttributeValue withDataType(String dataType)
Amazon SNS supports the following logical data types: String, Number, and Binary. For more information, see Message Attribute Data Types.
dataType
- Amazon SNS supports the following logical data types: String, Number, and Binary. For more information,
see Message Attribute Data Types.public void setStringValue(String stringValue)
Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
stringValue
- Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.public String getStringValue()
Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
public MessageAttributeValue withStringValue(String stringValue)
Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.
stringValue
- Strings are Unicode with UTF8 binary encoding. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters.public void setBinaryValue(ByteBuffer binaryValue)
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
binaryValue
- Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.public ByteBuffer getBinaryValue()
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
ByteBuffer
s are stateful. Calling their get
methods changes their position
. We recommend
using ByteBuffer.asReadOnlyBuffer()
to create a read-only view of the buffer with an independent
position
, and calling get
methods on this rather than directly on the returned ByteBuffer
.
Doing so will ensure that anyone else using the ByteBuffer
will not be affected by changes to the
position
.
public MessageAttributeValue withBinaryValue(ByteBuffer binaryValue)
Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.
The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
binaryValue
- Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.public String toString()
toString
in class Object
Object.toString()
public MessageAttributeValue clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.