public static interface MessageAttributeValue.Builder extends CopyableBuilder<MessageAttributeValue.Builder,MessageAttributeValue>
Modifier and Type | Method and Description |
---|---|
MessageAttributeValue.Builder |
binaryListValues(ByteBuffer... binaryListValues)
Not implemented.
|
MessageAttributeValue.Builder |
binaryListValues(Collection<ByteBuffer> binaryListValues)
Not implemented.
|
MessageAttributeValue.Builder |
binaryValue(ByteBuffer binaryValue)
Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.
|
MessageAttributeValue.Builder |
dataType(String dataType)
Amazon SQS supports the following logical data types:
String , Number , and
Binary . |
MessageAttributeValue.Builder |
stringListValues(Collection<String> stringListValues)
Not implemented.
|
MessageAttributeValue.Builder |
stringListValues(String... stringListValues)
Not implemented.
|
MessageAttributeValue.Builder |
stringValue(String stringValue)
Strings are Unicode with UTF-8 binary encoding.
|
copy
apply, build
MessageAttributeValue.Builder stringValue(String stringValue)
Strings are Unicode with UTF-8 binary encoding. For a list of code values, see ASCII Printable Characters.
stringValue
- Strings are Unicode with UTF-8 binary encoding. For a list of code values, see ASCII Printable Characters.MessageAttributeValue.Builder binaryValue(ByteBuffer binaryValue)
Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.
To preserve immutability, the remaining bytes in the provided buffer will be copied into a new buffer when set.
binaryValue
- Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.MessageAttributeValue.Builder stringListValues(Collection<String> stringListValues)
Not implemented. Reserved for future use.
stringListValues
- Not implemented. Reserved for future use.MessageAttributeValue.Builder stringListValues(String... stringListValues)
Not implemented. Reserved for future use.
stringListValues
- Not implemented. Reserved for future use.MessageAttributeValue.Builder binaryListValues(Collection<ByteBuffer> binaryListValues)
Not implemented. Reserved for future use.
binaryListValues
- Not implemented. Reserved for future use.MessageAttributeValue.Builder binaryListValues(ByteBuffer... binaryListValues)
Not implemented. Reserved for future use.
binaryListValues
- Not implemented. Reserved for future use.MessageAttributeValue.Builder dataType(String dataType)
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 Message Attribute Data Types and Validation in the Amazon Simple Queue Service Developer Guide.
dataType
- 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 Message Attribute Data Types and Validation in the Amazon Simple Queue Service Developer Guide.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.