#[non_exhaustive]pub struct QueryTableRowsInput {
pub workbook_id: Option<String>,
pub table_id: Option<String>,
pub filter_formula: Option<Filter>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workbook_id: Option<String>
The ID of the workbook whose table rows are being queried.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
table_id: Option<String>
The ID of the table whose rows are being queried.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
filter_formula: Option<Filter>
An object that represents a filter formula along with the id of the context row under which the filter function needs to evaluate.
max_results: Option<i32>
The maximum number of rows to return in each page of the results.
next_token: Option<String>
This parameter is optional. If a nextToken is not specified, the API returns the first page of data.
Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.
Implementations§
source§impl QueryTableRowsInput
impl QueryTableRowsInput
sourcepub fn workbook_id(&self) -> Option<&str>
pub fn workbook_id(&self) -> Option<&str>
The ID of the workbook whose table rows are being queried.
If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn table_id(&self) -> Option<&str>
pub fn table_id(&self) -> Option<&str>
The ID of the table whose rows are being queried.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn filter_formula(&self) -> Option<&Filter>
pub fn filter_formula(&self) -> Option<&Filter>
An object that represents a filter formula along with the id of the context row under which the filter function needs to evaluate.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of rows to return in each page of the results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
This parameter is optional. If a nextToken is not specified, the API returns the first page of data.
Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.
source§impl QueryTableRowsInput
impl QueryTableRowsInput
sourcepub fn builder() -> QueryTableRowsInputBuilder
pub fn builder() -> QueryTableRowsInputBuilder
Creates a new builder-style object to manufacture QueryTableRowsInput
.
Trait Implementations§
source§impl Clone for QueryTableRowsInput
impl Clone for QueryTableRowsInput
source§fn clone(&self) -> QueryTableRowsInput
fn clone(&self) -> QueryTableRowsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QueryTableRowsInput
impl Debug for QueryTableRowsInput
source§impl PartialEq for QueryTableRowsInput
impl PartialEq for QueryTableRowsInput
source§fn eq(&self, other: &QueryTableRowsInput) -> bool
fn eq(&self, other: &QueryTableRowsInput) -> bool
self
and other
values to be equal, and is used
by ==
.