Interface CfnGlobalTable.ProjectionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGlobalTable.ProjectionProperty.Jsii$Proxy
Enclosing class:
CfnGlobalTable

@Stability(Stable) public static interface CfnGlobalTable.ProjectionProperty extends software.amazon.jsii.JsiiSerializable
Represents attributes that are copied (projected) from the table into an index.

These are in addition to the primary key attributes and index key attributes, which are automatically projected.

Example:

 // 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.*;
 ProjectionProperty projectionProperty = ProjectionProperty.builder()
         .nonKeyAttributes(List.of("nonKeyAttributes"))
         .projectionType("projectionType")
         .build();
 

See Also: