@Generated(value="jsii-pacmak/1.31.0 (build 6fa403d)", date="2021-08-11T10:33:08.027Z") @Stability(value=Experimental) public enum MessageAttributeDataType extends Enum<MessageAttributeDataType>
https://docs.aws.amazon.com/sns/latest/dg/sns-message-attributes.html#SNSMessageAttributes.DataTypes| Enum Constant and Description |
|---|
BINARY
(experimental) Binary type attributes can store any binary data.
|
NUMBER
(experimental) Numbers are positive or negative integers or floating-point numbers.
|
STRING
(experimental) Strings are Unicode with UTF-8 binary encoding.
|
STRING_ARRAY
(experimental) An array, formatted as a string.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageAttributeDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageAttributeDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final MessageAttributeDataType STRING
@Stability(value=Experimental) public static final MessageAttributeDataType STRING_ARRAY
https://docs.aws.amazon.com/sns/latest/dg/sns-message-attributes.html#SNSMessageAttributes.DataTypes@Stability(value=Experimental) public static final MessageAttributeDataType NUMBER
https://docs.aws.amazon.com/sns/latest/dg/sns-message-attributes.html#SNSMessageAttributes.DataTypes@Stability(value=Experimental) public static final MessageAttributeDataType BINARY
https://docs.aws.amazon.com/sns/latest/dg/sns-message-attributes.html#SNSMessageAttributes.DataTypespublic static MessageAttributeDataType[] values()
for (MessageAttributeDataType c : MessageAttributeDataType.values()) System.out.println(c);
public static MessageAttributeDataType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.