public enum Attribute extends Enum<Attribute>
Enum Constant and Description |
---|
APPLY_RANGE_KEY
The XML attribute for the optional range key to apply to all
DynamoDB operations.
|
ENDPOINT
The XML attribute for the DynamoDB endpoint.
|
INDEXED_ATTRIBUTES
The XML attribute for the indexed DynamoDB table attributes.
|
ITEM_TRANSFORMER
The XML attribute for the DynamoDB item transformer.
|
QUERY_EXECUTOR
The XML attribute for the DynamoDB query executor.
|
RANGE_KEY_VALUE
The XML attribute for the optional value of the range key.
|
READ_CAPACITY
The XML attribute for the read capacity to provision when creating
a new DynamoDB table and indices.
|
REGION
The XML attribute for the DynamoDB region.
|
TABLE_PREFIX
The XML attribute for the optional DynamoDB table prefix to use.
|
UNKNOWN
Unknown XML attribute.
|
WRITE_CAPACITY
The XML attribute for the write capacity to provision when creating
a new DynamoDB table and indices.
|
Modifier and Type | Method and Description |
---|---|
static Attribute |
forName(String localName)
Returns the matching attribute for the specified local name.
|
String |
getLocalName()
Gets the local name of this attribute.
|
static Attribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attribute ENDPOINT
public static final Attribute ITEM_TRANSFORMER
public static final Attribute QUERY_EXECUTOR
public static final Attribute INDEXED_ATTRIBUTES
public static final Attribute READ_CAPACITY
public static final Attribute WRITE_CAPACITY
public static final Attribute TABLE_PREFIX
public static final Attribute APPLY_RANGE_KEY
public static final Attribute RANGE_KEY_VALUE
public static Attribute[] values()
for (Attribute c : Attribute.values()) System.out.println(c);
public static Attribute 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 nullpublic String getLocalName()
Copyright © 2018 Connect2id Ltd.. All rights reserved.