Class BaseRequest
Represents a base request for querying or scanning a database.
Inherited Members
Namespace: Innovt.Cloud.Table
Assembly: Innovt.Cloud.dll
Syntax
public class BaseRequest
Properties
| Edit this page View SourceAttributesToGet
Gets or sets the attributes to retrieve in the query or scan.
Declaration
public string AttributesToGet { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ExpressionAttributeNames
Used to define the attributes that you can customize.
Declaration
public Dictionary<string, string> ExpressionAttributeNames { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, string> |
Filter
Gets or sets the filter to apply to the query or scan.
Declaration
public object Filter { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
FilterExpression
Gets or sets the filter expression for the query or scan.
Declaration
public string FilterExpression { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
IndexName
Gets or sets the index name to query or scan.
Declaration
public string IndexName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Page
Gets or sets the page token for pagination in the query or scan.
Declaration
public string Page { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
PageSize
Gets or sets the page size for the query or scan.
Declaration
public int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |