Struct aws_sdk_athena::operation::get_database::GetDatabaseInput
source · #[non_exhaustive]pub struct GetDatabaseInput {
pub catalog_name: Option<String>,
pub database_name: Option<String>,
pub work_group: Option<String>,
}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.catalog_name: Option<String>The name of the data catalog that contains the database to return.
database_name: Option<String>The name of the database to return.
work_group: Option<String>The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.
Implementations§
source§impl GetDatabaseInput
impl GetDatabaseInput
sourcepub fn catalog_name(&self) -> Option<&str>
pub fn catalog_name(&self) -> Option<&str>
The name of the data catalog that contains the database to return.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the database to return.
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center enabled Glue Data Catalog.
source§impl GetDatabaseInput
impl GetDatabaseInput
sourcepub fn builder() -> GetDatabaseInputBuilder
pub fn builder() -> GetDatabaseInputBuilder
Creates a new builder-style object to manufacture GetDatabaseInput.
Trait Implementations§
source§impl Clone for GetDatabaseInput
impl Clone for GetDatabaseInput
source§fn clone(&self) -> GetDatabaseInput
fn clone(&self) -> GetDatabaseInput
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 GetDatabaseInput
impl Debug for GetDatabaseInput
source§impl PartialEq for GetDatabaseInput
impl PartialEq for GetDatabaseInput
source§fn eq(&self, other: &GetDatabaseInput) -> bool
fn eq(&self, other: &GetDatabaseInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetDatabaseInput
Auto Trait Implementations§
impl Freeze for GetDatabaseInput
impl RefUnwindSafe for GetDatabaseInput
impl Send for GetDatabaseInput
impl Sync for GetDatabaseInput
impl Unpin for GetDatabaseInput
impl UnwindSafe for GetDatabaseInput
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> 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>
Creates a shared type from an unshared type.