CopyableBuilder<MessageAttributeValue.Builder,MessageAttributeValue>
, SdkBuilder<MessageAttributeValue.Builder,MessageAttributeValue>
public static interface MessageAttributeValue.Builder extends CopyableBuilder<MessageAttributeValue.Builder,MessageAttributeValue>
Modifier and Type | Method | 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(String... stringListValues) |
Not implemented.
|
MessageAttributeValue.Builder |
stringListValues(Collection<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.
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.
NOTE: This method appends the values to the existing list (if any). Use
#setStringListValues(java.util.Collection)
or #withStringListValues(java.util.Collection)
if
you want to override the existing values.
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.
NOTE: This method appends the values to the existing list (if any). Use
#setBinaryListValues(java.util.Collection)
or #withBinaryListValues(java.util.Collection)
if
you want to override the existing values.
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 SQS 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 SQS Developer Guide.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.