The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the count of matching items, or
in the case of an index, some or all of the attributes projected into the index. ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when accessing an index. You cannot use both Select
and AttributesToGet together in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES . (This
usage is equivalent to specifying AttributesToGet without any value for Select.)
ALL_ATTRIBUTES : Returns all of the item attributes. For a table, this is the default. For an index, this mode causes Amazon DynamoDB to fetch the full item from the table for each matching item in the index. If the index is configured to project all item attributes, the matching items will not be fetched from the table. Fetching items from the table incurs additional throughput cost and latency.ALL_PROJECTED_ATTRIBUTES : Retrieves all attributes which have been projected into the index. If the index is configured to project all attributes, this is equivalent to specifying ALL_ATTRIBUTES.COUNT : Returns the number of matching items, rather than the matching items themselves.SPECIFIC_ATTRIBUTES : Returns only the attributes listed in AttributesToGet. This is equivalent to specifying AttributesToGet without specifying any value for Select. If you are querying an index and request only attributes that are projected into that index, the operation will read only the index and not the table. If any of the requested attributes are not projected into the index, Amazon DynamoDB will need to fetch each matching item from the table. This extra fetching incurs additional throughput cost and latency.
Constraints:
Namespace: Amazon.DynamoDBv2.Model
Assembly: AWSSDK.dll
Version: 2.0.0.3
Syntax
public Select Select { get; set; }
Property Value
Type: Amazon.DynamoDBv2.Select
Type: Amazon.DynamoDBv2.Select
Version Information
.NET Framework:
Supported in: 4.5, 4.0, 3.5
.NET for Windows Store apps:
Supported in: Windows 8
.NET for Windows Phone:
Supported in: Window Phone 8