Struct aws_sdk_honeycode::output::query_table_rows_output::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for QueryTableRowsOutput
.
Implementations
sourceimpl Builder
impl Builder
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 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 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) -> QueryTableRowsOutput
pub fn build(self) -> QueryTableRowsOutput
Consumes the builder and constructs a QueryTableRowsOutput
.