Struct aws_sdk_honeycode::input::QueryTableRowsInput
source · [−]#[non_exhaustive]pub struct QueryTableRowsInput { /* private fields */ }
Implementations
sourceimpl QueryTableRowsInput
impl QueryTableRowsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<QueryTableRows, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<QueryTableRows, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<QueryTableRows
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture QueryTableRowsInput
.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for QueryTableRowsInput
impl Clone for QueryTableRowsInput
sourcefn clone(&self) -> QueryTableRowsInput
fn clone(&self) -> QueryTableRowsInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more