#[non_exhaustive]pub struct ListTableRowsOutputBuilder { /* private fields */ }
Expand description
A builder for ListTableRowsOutput
.
Implementations§
source§impl ListTableRowsOutputBuilder
impl ListTableRowsOutputBuilder
sourcepub fn column_ids(self, input: impl Into<String>) -> Self
pub fn column_ids(self, input: impl Into<String>) -> Self
Appends an item to column_ids
.
To override the contents of this collection use set_column_ids
.
The list of columns in the table whose row data is returned in the result.
sourcepub fn set_column_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_column_ids(self, input: Option<Vec<String>>) -> Self
The list of columns in the table whose row data is returned in the result.
sourcepub fn rows(self, input: TableRow) -> Self
pub fn rows(self, input: TableRow) -> Self
Appends an item to rows
.
To override the contents of this collection use set_rows
.
The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.
sourcepub fn set_rows(self, input: Option<Vec<TableRow>>) -> Self
pub fn set_rows(self, input: Option<Vec<TableRow>>) -> Self
The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.
sourcepub fn row_ids_not_found(self, input: impl Into<String>) -> Self
pub fn row_ids_not_found(self, input: impl Into<String>) -> Self
Appends an item to row_ids_not_found
.
To override the contents of this collection use set_row_ids_not_found
.
The list of row ids included in the request that were not found in the table.
sourcepub fn set_row_ids_not_found(self, input: Option<Vec<String>>) -> Self
pub fn set_row_ids_not_found(self, input: Option<Vec<String>>) -> Self
The list of row ids included in the request that were not found in the table.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.
sourcepub fn workbook_cursor(self, input: i64) -> Self
pub fn workbook_cursor(self, input: i64) -> Self
Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
sourcepub fn set_workbook_cursor(self, input: Option<i64>) -> Self
pub fn set_workbook_cursor(self, input: Option<i64>) -> Self
Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.
sourcepub fn build(self) -> ListTableRowsOutput
pub fn build(self) -> ListTableRowsOutput
Consumes the builder and constructs a ListTableRowsOutput
.
Trait Implementations§
source§impl Clone for ListTableRowsOutputBuilder
impl Clone for ListTableRowsOutputBuilder
source§fn clone(&self) -> ListTableRowsOutputBuilder
fn clone(&self) -> ListTableRowsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTableRowsOutputBuilder
impl Debug for ListTableRowsOutputBuilder
source§impl Default for ListTableRowsOutputBuilder
impl Default for ListTableRowsOutputBuilder
source§fn default() -> ListTableRowsOutputBuilder
fn default() -> ListTableRowsOutputBuilder
source§impl PartialEq<ListTableRowsOutputBuilder> for ListTableRowsOutputBuilder
impl PartialEq<ListTableRowsOutputBuilder> for ListTableRowsOutputBuilder
source§fn eq(&self, other: &ListTableRowsOutputBuilder) -> bool
fn eq(&self, other: &ListTableRowsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.