stratosphere-0.2.1: EDSL for AWS CloudFormation

Safe HaskellNone
LanguageHaskell2010

Stratosphere.ResourceProperties.DynamoDBProjectionObject

Description

Attributes that are copied (projected) from the source table into the index. These attributes are additions to the primary key attributes and index key attributes, which are automatically projected.

Synopsis

Documentation

data DynamoDBProjectionObject Source #

Full data type definition for DynamoDBProjectionObject. See dynamoDBProjectionObject for a more convenient constructor.

dynamoDBProjectionObject :: DynamoDBProjectionObject Source #

Constructor for DynamoDBProjectionObject containing required fields as arguments.

ddbpoNonKeyAttributes :: Lens' DynamoDBProjectionObject (Maybe [Val Text]) Source #

The non-key attribute names that are projected into the index. For local secondary indexes, the total count of NonKeyAttributes summed across all of the local secondary indexes must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes in determining the total.

ddbpoProjectionType :: Lens' DynamoDBProjectionObject (Maybe ProjectionType) Source #

The set of attributes that are projected into the index: Only the index and primary keys are projected into the index. Only the specified table attributes are projected into the index. The list of projected attributes are in NonKeyAttributes. All of the table attributes are projected into the index.