C# Class Amazon.DynamoDBv2.Model.ScanRequest

Container for the parameters to the Scan operation.

The Scan operation returns one or more items and item attributes by accessing every item in the table. To have Amazon DynamoDB return fewer items, you can provide a ScanFilter .

If the total number of scanned items exceeds the maximum data set size limit of 1 MB, the scan stops and results are returned to the user with a LastEvaluatedKey to continue the scan in a subsequent operation. The results also include the number of items exceeding the limit. A scan can result in no table data meeting the filter criteria.

The result set is eventually consistent.

Inheritance: Amazon.Runtime.AmazonWebServiceRequest
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
ScanRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

ScanRequest ( string tableName ) : System

Instantiates ScanRequest with the parameterized properties

Private Methods

Method Description
IsSetAttributesToGet ( ) : bool
IsSetConditionalOperator ( ) : bool
IsSetConsistentRead ( ) : bool
IsSetExclusiveStartKey ( ) : bool
IsSetExpressionAttributeNames ( ) : bool
IsSetExpressionAttributeValues ( ) : bool
IsSetFilterExpression ( ) : bool
IsSetIndexName ( ) : bool
IsSetLimit ( ) : bool
IsSetProjectionExpression ( ) : bool
IsSetReturnConsumedCapacity ( ) : bool
IsSetScanFilter ( ) : bool
IsSetSegment ( ) : bool
IsSetSelect ( ) : bool
IsSetTableName ( ) : bool
IsSetTotalSegments ( ) : bool

Method Details

ScanRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public ScanRequest ( ) : System
return System

ScanRequest() public method

Instantiates ScanRequest with the parameterized properties
public ScanRequest ( string tableName ) : System
tableName string The name of the table containing the requested items; or, if you provide IndexName, the name of the table to which that index belongs.
return System