Interface MessageSystemAttributeValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MessageSystemAttributeValue.Builder,MessageSystemAttributeValue>,SdkBuilder<MessageSystemAttributeValue.Builder,MessageSystemAttributeValue>,SdkPojo
- Enclosing class:
- MessageSystemAttributeValue
@Mutable @NotThreadSafe public static interface MessageSystemAttributeValue.Builder extends SdkPojo, CopyableBuilder<MessageSystemAttributeValue.Builder,MessageSystemAttributeValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessageSystemAttributeValue.BuilderbinaryListValues(Collection<SdkBytes> binaryListValues)Not implemented.MessageSystemAttributeValue.BuilderbinaryListValues(SdkBytes... binaryListValues)Not implemented.MessageSystemAttributeValue.BuilderbinaryValue(SdkBytes binaryValue)Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.MessageSystemAttributeValue.BuilderdataType(String dataType)Amazon SQS supports the following logical data types:String,Number, andBinary.MessageSystemAttributeValue.BuilderstringListValues(String... stringListValues)Not implemented.MessageSystemAttributeValue.BuilderstringListValues(Collection<String> stringListValues)Not implemented.MessageSystemAttributeValue.BuilderstringValue(String stringValue)Strings are Unicode with UTF-8 binary encoding.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
stringValue
MessageSystemAttributeValue.Builder stringValue(String stringValue)
Strings are Unicode with UTF-8 binary encoding. For a list of code values, see ASCII Printable Characters.
- Parameters:
stringValue- Strings are Unicode with UTF-8 binary encoding. For a list of code values, see ASCII Printable Characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binaryValue
MessageSystemAttributeValue.Builder binaryValue(SdkBytes binaryValue)
Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.
- Parameters:
binaryValue- Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringListValues
MessageSystemAttributeValue.Builder stringListValues(Collection<String> stringListValues)
Not implemented. Reserved for future use.
- Parameters:
stringListValues- Not implemented. Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringListValues
MessageSystemAttributeValue.Builder stringListValues(String... stringListValues)
Not implemented. Reserved for future use.
- Parameters:
stringListValues- Not implemented. Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binaryListValues
MessageSystemAttributeValue.Builder binaryListValues(Collection<SdkBytes> binaryListValues)
Not implemented. Reserved for future use.
- Parameters:
binaryListValues- Not implemented. Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binaryListValues
MessageSystemAttributeValue.Builder binaryListValues(SdkBytes... binaryListValues)
Not implemented. Reserved for future use.
- Parameters:
binaryListValues- Not implemented. Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
MessageSystemAttributeValue.Builder dataType(String dataType)
Amazon SQS supports the following logical data types:
String,Number, andBinary. For theNumberdata type, you must useStringValue.You can also append custom labels. For more information, see Amazon SQS Message Attributes in the Amazon SQS Developer Guide.
- Parameters:
dataType- Amazon SQS supports the following logical data types:String,Number, andBinary. For theNumberdata type, you must useStringValue.You can also append custom labels. For more information, see Amazon SQS Message Attributes in the Amazon SQS Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-