#[non_exhaustive]pub struct ExecuteQueryOutputBuilder { /* private fields */ }Expand description
A builder for ExecuteQueryOutput.
Implementations§
source§impl ExecuteQueryOutputBuilder
impl ExecuteQueryOutputBuilder
sourcepub fn column_descriptions(self, input: ColumnDescription) -> Self
pub fn column_descriptions(self, input: ColumnDescription) -> Self
Appends an item to column_descriptions.
To override the contents of this collection use set_column_descriptions.
A list of ColumnDescription objects.
sourcepub fn set_column_descriptions(
self,
input: Option<Vec<ColumnDescription>>
) -> Self
pub fn set_column_descriptions( self, input: Option<Vec<ColumnDescription>> ) -> Self
A list of ColumnDescription objects.
sourcepub fn rows(self, input: Row) -> Self
pub fn rows(self, input: Row) -> Self
Appends an item to rows.
To override the contents of this collection use set_rows.
Represents a single row in the query results.
sourcepub fn set_rows(self, input: Option<Vec<Row>>) -> Self
pub fn set_rows(self, input: Option<Vec<Row>>) -> Self
Represents a single row in the query results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The string that specifies the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The string that specifies the next page of results.
sourcepub fn build(self) -> ExecuteQueryOutput
pub fn build(self) -> ExecuteQueryOutput
Consumes the builder and constructs a ExecuteQueryOutput.
Trait Implementations§
source§impl Clone for ExecuteQueryOutputBuilder
impl Clone for ExecuteQueryOutputBuilder
source§fn clone(&self) -> ExecuteQueryOutputBuilder
fn clone(&self) -> ExecuteQueryOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ExecuteQueryOutputBuilder
impl Debug for ExecuteQueryOutputBuilder
source§impl Default for ExecuteQueryOutputBuilder
impl Default for ExecuteQueryOutputBuilder
source§fn default() -> ExecuteQueryOutputBuilder
fn default() -> ExecuteQueryOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ExecuteQueryOutputBuilder> for ExecuteQueryOutputBuilder
impl PartialEq<ExecuteQueryOutputBuilder> for ExecuteQueryOutputBuilder
source§fn eq(&self, other: &ExecuteQueryOutputBuilder) -> bool
fn eq(&self, other: &ExecuteQueryOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.