Struct aws_sdk_glue::types::FederatedTable
source · #[non_exhaustive]pub struct FederatedTable {
pub identifier: Option<String>,
pub database_identifier: Option<String>,
pub connection_name: Option<String>,
}Expand description
A table that points to an entity outside the Glue Data Catalog.
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.identifier: Option<String>A unique identifier for the federated table.
database_identifier: Option<String>A unique identifier for the federated database.
connection_name: Option<String>The name of the connection to the external metastore.
Implementations§
source§impl FederatedTable
impl FederatedTable
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
A unique identifier for the federated table.
sourcepub fn database_identifier(&self) -> Option<&str>
pub fn database_identifier(&self) -> Option<&str>
A unique identifier for the federated database.
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the connection to the external metastore.
source§impl FederatedTable
impl FederatedTable
sourcepub fn builder() -> FederatedTableBuilder
pub fn builder() -> FederatedTableBuilder
Creates a new builder-style object to manufacture FederatedTable.
Trait Implementations§
source§impl Clone for FederatedTable
impl Clone for FederatedTable
source§fn clone(&self) -> FederatedTable
fn clone(&self) -> FederatedTable
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 FederatedTable
impl Debug for FederatedTable
source§impl PartialEq<FederatedTable> for FederatedTable
impl PartialEq<FederatedTable> for FederatedTable
source§fn eq(&self, other: &FederatedTable) -> bool
fn eq(&self, other: &FederatedTable) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FederatedTable
Auto Trait Implementations§
impl RefUnwindSafe for FederatedTable
impl Send for FederatedTable
impl Sync for FederatedTable
impl Unpin for FederatedTable
impl UnwindSafe for FederatedTable
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