Skip to content

Commit

Permalink
Merge pull request #1004 from aws/normj/pr-3190
Browse files Browse the repository at this point in the history
  • Loading branch information
normj authored Feb 28, 2024
2 parents 22c8103 + e726dd5 commit 8024f94
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions generator/.DevConfigs/39850B24-B573-4F21-87D2-A2A1ADC8B0A0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"services": [
{
"serviceName": "DynamoDBv2",
"type": "patch",
"changeLogMessages": [
"Expose PaginationToken property in AsyncSearch."
]
}
]
}
13 changes: 13 additions & 0 deletions sdk/src/Services/DynamoDBv2/Custom/DataModel/AsyncSearch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,19 @@ public virtual bool IsDone
}
}

/// <summary>
/// Pagination token corresponding to the item where the search operation stopped,
/// inclusive of the previous result set. Use this value to start a new
/// operation to resume search from the next item.
/// </summary>
public virtual string PaginationToken
{
get
{
return DocumentSearch.PaginationToken;
}
}

#endregion
}
}

0 comments on commit 8024f94

Please sign in to comment.