@Stability(value=Stable)
public static interface CfnGlobalTable.LocalSecondaryIndexProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.dynamodb.*;
LocalSecondaryIndexProperty localSecondaryIndexProperty = LocalSecondaryIndexProperty.builder()
.indexName("indexName")
.keySchema(List.of(KeySchemaProperty.builder()
.attributeName("attributeName")
.keyType("keyType")
.build()))
.projection(ProjectionProperty.builder()
.nonKeyAttributes(List.of("nonKeyAttributes"))
.projectionType("projectionType")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGlobalTable.LocalSecondaryIndexProperty.Builder
A builder for
CfnGlobalTable.LocalSecondaryIndexProperty |
static class |
CfnGlobalTable.LocalSecondaryIndexProperty.Jsii$Proxy
An implementation for
CfnGlobalTable.LocalSecondaryIndexProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGlobalTable.LocalSecondaryIndexProperty.Builder |
builder() |
String |
getIndexName()
`CfnGlobalTable.LocalSecondaryIndexProperty.IndexName`.
|
Object |
getKeySchema()
`CfnGlobalTable.LocalSecondaryIndexProperty.KeySchema`.
|
Object |
getProjection()
`CfnGlobalTable.LocalSecondaryIndexProperty.Projection`.
|
@Stability(value=Stable) @NotNull String getIndexName()
@Stability(value=Stable) @NotNull Object getKeySchema()
@Stability(value=Stable) @NotNull Object getProjection()
@Stability(value=Stable) static CfnGlobalTable.LocalSecondaryIndexProperty.Builder builder()
Copyright © 2021. All rights reserved.