@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:16.910Z") @Stability(value=Experimental) public enum AttributeType extends Enum<AttributeType>
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes| Enum Constant and Description |
|---|
BINARY
(experimental) Up to 400KiB of binary data (which must be encoded as base64 before sending to DynamoDB).
|
NUMBER
(experimental) Numeric values made of up to 38 digits (positive, negative or zero).
|
STRING
(experimental) Up to 400KiB of UTF-8 encoded text.
|
| Modifier and Type | Method and Description |
|---|---|
static AttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final AttributeType BINARY
@Stability(value=Experimental) public static final AttributeType NUMBER
@Stability(value=Experimental) public static final AttributeType STRING
public static AttributeType[] values()
for (AttributeType c : AttributeType.values()) System.out.println(c);
public static AttributeType 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.