Struct aws_sdk_quicksight::types::builders::RelationalTableBuilder
source · #[non_exhaustive]pub struct RelationalTableBuilder { /* private fields */ }
Expand description
A builder for RelationalTable
.
Implementations§
source§impl RelationalTableBuilder
impl RelationalTableBuilder
sourcepub fn data_source_arn(self, input: impl Into<String>) -> Self
pub fn data_source_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the data source.
This field is required.sourcepub fn set_data_source_arn(self, input: Option<String>) -> Self
pub fn set_data_source_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for the data source.
sourcepub fn get_data_source_arn(&self) -> &Option<String>
pub fn get_data_source_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) for the data source.
sourcepub fn set_catalog(self, input: Option<String>) -> Self
pub fn set_catalog(self, input: Option<String>) -> Self
The catalog associated with a table.
sourcepub fn get_catalog(&self) -> &Option<String>
pub fn get_catalog(&self) -> &Option<String>
The catalog associated with a table.
sourcepub fn schema(self, input: impl Into<String>) -> Self
pub fn schema(self, input: impl Into<String>) -> Self
The schema name. This name applies to certain relational database engines.
sourcepub fn set_schema(self, input: Option<String>) -> Self
pub fn set_schema(self, input: Option<String>) -> Self
The schema name. This name applies to certain relational database engines.
sourcepub fn get_schema(&self) -> &Option<String>
pub fn get_schema(&self) -> &Option<String>
The schema name. This name applies to certain relational database engines.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the relational table.
This field is required.sourcepub fn input_columns(self, input: InputColumn) -> Self
pub fn input_columns(self, input: InputColumn) -> Self
Appends an item to input_columns
.
To override the contents of this collection use set_input_columns
.
The column schema of the table.
sourcepub fn set_input_columns(self, input: Option<Vec<InputColumn>>) -> Self
pub fn set_input_columns(self, input: Option<Vec<InputColumn>>) -> Self
The column schema of the table.
sourcepub fn get_input_columns(&self) -> &Option<Vec<InputColumn>>
pub fn get_input_columns(&self) -> &Option<Vec<InputColumn>>
The column schema of the table.
sourcepub fn build(self) -> Result<RelationalTable, BuildError>
pub fn build(self) -> Result<RelationalTable, BuildError>
Consumes the builder and constructs a RelationalTable
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RelationalTableBuilder
impl Clone for RelationalTableBuilder
source§fn clone(&self) -> RelationalTableBuilder
fn clone(&self) -> RelationalTableBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RelationalTableBuilder
impl Debug for RelationalTableBuilder
source§impl Default for RelationalTableBuilder
impl Default for RelationalTableBuilder
source§fn default() -> RelationalTableBuilder
fn default() -> RelationalTableBuilder
source§impl PartialEq for RelationalTableBuilder
impl PartialEq for RelationalTableBuilder
source§fn eq(&self, other: &RelationalTableBuilder) -> bool
fn eq(&self, other: &RelationalTableBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.