#[non_exhaustive]pub struct ListTableRowsInput { /* private fields */ }
Implementations§
source§impl ListTableRowsInput
impl ListTableRowsInput
sourcepub fn workbook_id(&self) -> Option<&str>
pub fn workbook_id(&self) -> Option<&str>
The ID of the workbook that contains the table whose rows are being retrieved.
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 retrieved.
If a table with the specified id could not be found, this API throws ResourceNotFoundException.
sourcepub fn row_ids(&self) -> Option<&[String]>
pub fn row_ids(&self) -> Option<&[String]>
This parameter is optional. If one or more row ids are specified in this list, then only the specified row ids are returned in the result. If no row ids are specified here, then all the rows in the table are returned.
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 ListTableRowsInput
impl ListTableRowsInput
sourcepub fn builder() -> ListTableRowsInputBuilder
pub fn builder() -> ListTableRowsInputBuilder
Creates a new builder-style object to manufacture ListTableRowsInput
.
source§impl ListTableRowsInput
impl ListTableRowsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTableRows, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListTableRows, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListTableRows
>
Trait Implementations§
source§impl Clone for ListTableRowsInput
impl Clone for ListTableRowsInput
source§fn clone(&self) -> ListTableRowsInput
fn clone(&self) -> ListTableRowsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTableRowsInput
impl Debug for ListTableRowsInput
source§impl PartialEq<ListTableRowsInput> for ListTableRowsInput
impl PartialEq<ListTableRowsInput> for ListTableRowsInput
source§fn eq(&self, other: &ListTableRowsInput) -> bool
fn eq(&self, other: &ListTableRowsInput) -> bool
self
and other
values to be equal, and is used
by ==
.