Struct aws_sdk_honeycode::operation::query_table_rows::builders::QueryTableRowsOutputBuilder
source · #[non_exhaustive]pub struct QueryTableRowsOutputBuilder { /* private fields */ }
Expand description
A builder for QueryTableRowsOutput
.
Implementations§
source§impl QueryTableRowsOutputBuilder
impl QueryTableRowsOutputBuilder
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 get_column_ids(&self) -> &Option<Vec<String>>
pub fn get_column_ids(&self) -> &Option<Vec<String>>
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 that match the query filter.
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 that match the query filter.
sourcepub fn get_rows(&self) -> &Option<Vec<TableRow>>
pub fn get_rows(&self) -> &Option<Vec<TableRow>>
The list of rows in the table that match the query filter.
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
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.
This field is required.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 get_workbook_cursor(&self) -> &Option<i64>
pub fn get_workbook_cursor(&self) -> &Option<i64>
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) -> Result<QueryTableRowsOutput, BuildError>
pub fn build(self) -> Result<QueryTableRowsOutput, BuildError>
Consumes the builder and constructs a QueryTableRowsOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for QueryTableRowsOutputBuilder
impl Clone for QueryTableRowsOutputBuilder
source§fn clone(&self) -> QueryTableRowsOutputBuilder
fn clone(&self) -> QueryTableRowsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QueryTableRowsOutputBuilder
impl Debug for QueryTableRowsOutputBuilder
source§impl Default for QueryTableRowsOutputBuilder
impl Default for QueryTableRowsOutputBuilder
source§fn default() -> QueryTableRowsOutputBuilder
fn default() -> QueryTableRowsOutputBuilder
source§impl PartialEq for QueryTableRowsOutputBuilder
impl PartialEq for QueryTableRowsOutputBuilder
source§fn eq(&self, other: &QueryTableRowsOutputBuilder) -> bool
fn eq(&self, other: &QueryTableRowsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.