pub struct QueryPagination {
pub next_token: Option<String>,
}Expand description
QueryPagination : When a query produces results that are not included in the data document, pagination occurs. This means the results are divided into pages. To retrieve the next page, you must pass a CreateQuerySpecification object with paginationToken set to this object’s nextToken and with query set to this object’s query in the subsequent createQuery request. When there are no more pages to fetch, the nextToken field will be absent.
Fields§
§next_token: Option<String>A token that can be used to fetch the next page of results.
Implementations§
Source§impl QueryPagination
impl QueryPagination
Sourcepub fn new() -> QueryPagination
pub fn new() -> QueryPagination
When a query produces results that are not included in the data document, pagination occurs. This means the results are divided into pages. To retrieve the next page, you must pass a CreateQuerySpecification object with paginationToken set to this object’s nextToken and with query set to this object’s query in the subsequent createQuery request. When there are no more pages to fetch, the nextToken field will be absent.
Trait Implementations§
Source§impl Clone for QueryPagination
impl Clone for QueryPagination
Source§fn clone(&self) -> QueryPagination
fn clone(&self) -> QueryPagination
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more