pub struct CustomRegionConfig {
pub read_only_regions: Option<Vec<String>>,
pub read_write_regions: Option<Vec<String>>,
}Expand description
Custom configuration used to specify regions that the metastore service runs in. Currently only supported in the us multi-region.
This type is not used in any activity, and only used as part of another schema.
Fields§
§read_only_regions: Option<Vec<String>>Optional. The list of read-only regions where the metastore service runs in. These regions should be part (or subset) of the multi-region.
read_write_regions: Option<Vec<String>>Required. The list of read-write regions where the metastore service runs in. These regions should be part (or subset) of the multi-region.
Trait Implementations§
Source§impl Clone for CustomRegionConfig
impl Clone for CustomRegionConfig
Source§fn clone(&self) -> CustomRegionConfig
fn clone(&self) -> CustomRegionConfig
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 CustomRegionConfig
impl Debug for CustomRegionConfig
Source§impl Default for CustomRegionConfig
impl Default for CustomRegionConfig
Source§fn default() -> CustomRegionConfig
fn default() -> CustomRegionConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomRegionConfig
impl<'de> Deserialize<'de> for CustomRegionConfig
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 CustomRegionConfig
impl Serialize for CustomRegionConfig
impl Part for CustomRegionConfig
Auto Trait Implementations§
impl Freeze for CustomRegionConfig
impl RefUnwindSafe for CustomRegionConfig
impl Send for CustomRegionConfig
impl Sync for CustomRegionConfig
impl Unpin for CustomRegionConfig
impl UnwindSafe for CustomRegionConfig
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