Struct aws_sdk_quicksight::types::RelationalTable
source · #[non_exhaustive]pub struct RelationalTable {
pub data_source_arn: String,
pub catalog: Option<String>,
pub schema: Option<String>,
pub name: String,
pub input_columns: Vec<InputColumn>,
}
Expand description
A physical table type for relational data sources.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_source_arn: 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: String
The name of the relational table.
input_columns: Vec<InputColumn>
The column schema of the table.
Implementations§
source§impl RelationalTable
impl RelationalTable
sourcepub fn data_source_arn(&self) -> &str
pub fn data_source_arn(&self) -> &str
The Amazon Resource Name (ARN) for the data source.
sourcepub fn schema(&self) -> Option<&str>
pub fn schema(&self) -> Option<&str>
The schema name. This name applies to certain relational database engines.
sourcepub fn input_columns(&self) -> &[InputColumn]
pub fn input_columns(&self) -> &[InputColumn]
The column schema of the table.
source§impl RelationalTable
impl RelationalTable
sourcepub fn builder() -> RelationalTableBuilder
pub fn builder() -> RelationalTableBuilder
Creates a new builder-style object to manufacture RelationalTable
.
Trait Implementations§
source§impl Clone for RelationalTable
impl Clone for RelationalTable
source§fn clone(&self) -> RelationalTable
fn clone(&self) -> RelationalTable
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 RelationalTable
impl Debug for RelationalTable
source§impl PartialEq for RelationalTable
impl PartialEq for RelationalTable
impl StructuralPartialEq for RelationalTable
Auto Trait Implementations§
impl Freeze for RelationalTable
impl RefUnwindSafe for RelationalTable
impl Send for RelationalTable
impl Sync for RelationalTable
impl Unpin for RelationalTable
impl UnwindSafe for RelationalTable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.