Package com.pulumi.aws.dynamodb.outputs
Class TableLocalSecondaryIndex
- java.lang.Object
-
- com.pulumi.aws.dynamodb.outputs.TableLocalSecondaryIndex
-
public final class TableLocalSecondaryIndex extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TableLocalSecondaryIndex.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TableLocalSecondaryIndex.Builder
builder()
static TableLocalSecondaryIndex.Builder
builder(TableLocalSecondaryIndex defaults)
java.lang.String
name()
java.util.List<java.lang.String>
nonKeyAttributes()
java.lang.String
projectionType()
java.lang.String
rangeKey()
-
-
-
Method Detail
-
name
public java.lang.String name()
- Returns:
- Name of the index
-
nonKeyAttributes
public java.util.List<java.lang.String> nonKeyAttributes()
- Returns:
- Only required with `INCLUDE` as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table.
-
projectionType
public java.lang.String projectionType()
- Returns:
- One of `ALL`, `INCLUDE` or `KEYS_ONLY` where `ALL` projects every attribute into the index, `KEYS_ONLY` projects into the index only the table and index hash_key and sort_key attributes , `INCLUDE` projects into the index all of the attributes that are defined in `non_key_attributes` in addition to the attributes that that`KEYS_ONLY` project.
-
rangeKey
public java.lang.String rangeKey()
- Returns:
- Name of the range key.
-
builder
public static TableLocalSecondaryIndex.Builder builder()
-
builder
public static TableLocalSecondaryIndex.Builder builder(TableLocalSecondaryIndex defaults)
-
-