Struct aws_sdk_quicksight::model::RelationalTable [−][src]
#[non_exhaustive]pub struct RelationalTable {
pub data_source_arn: Option<String>,
pub catalog: Option<String>,
pub schema: Option<String>,
pub name: Option<String>,
pub input_columns: Option<Vec<InputColumn>>,
}
Expand description
A physical table type for relational data sources.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_source_arn: Option<String>
The Amazon Resource Name (ARN) for the data source.
catalog: Option<String>
The catalog associated with a table.
schema: Option<String>
The schema name. This name applies to certain relational database engines.
name: Option<String>
The name of the relational table.
input_columns: Option<Vec<InputColumn>>
The column schema of the table.
Implementations
The Amazon Resource Name (ARN) for the data source.
The schema name. This name applies to certain relational database engines.
The column schema of the table.
Creates a new builder-style object to manufacture RelationalTable
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for RelationalTable
impl Send for RelationalTable
impl Sync for RelationalTable
impl Unpin for RelationalTable
impl UnwindSafe for RelationalTable
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more