pub struct DataCatalogConfig {
pub enabled: Option<bool>,
}Expand description
Specifies how metastore metadata should be integrated with the Data Catalog service.
This type is not used in any activity, and only used as part of another schema.
Fields§
§enabled: Option<bool>Optional. Defines whether the metastore metadata should be synced to Data Catalog. The default value is to disable syncing metastore metadata to Data Catalog.
Trait Implementations§
Source§impl Clone for DataCatalogConfig
impl Clone for DataCatalogConfig
Source§fn clone(&self) -> DataCatalogConfig
fn clone(&self) -> DataCatalogConfig
Returns a duplicate 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 DataCatalogConfig
impl Debug for DataCatalogConfig
Source§impl Default for DataCatalogConfig
impl Default for DataCatalogConfig
Source§fn default() -> DataCatalogConfig
fn default() -> DataCatalogConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataCatalogConfig
impl<'de> Deserialize<'de> for DataCatalogConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DataCatalogConfig
impl Serialize for DataCatalogConfig
impl Part for DataCatalogConfig
Auto Trait Implementations§
impl Freeze for DataCatalogConfig
impl RefUnwindSafe for DataCatalogConfig
impl Send for DataCatalogConfig
impl Sync for DataCatalogConfig
impl Unpin for DataCatalogConfig
impl UnwindSafe for DataCatalogConfig
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