#[non_exhaustive]pub struct LakeFormationConfiguration {
pub location_registration_role: Option<String>,
pub location_registration_exclude_s3_locations: Option<Vec<String>>,
}
Expand description
The Lake Formation configuration of the Data Lake blueprint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.location_registration_role: Option<String>
The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.
location_registration_exclude_s3_locations: Option<Vec<String>>
Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
Implementations§
source§impl LakeFormationConfiguration
impl LakeFormationConfiguration
sourcepub fn location_registration_role(&self) -> Option<&str>
pub fn location_registration_role(&self) -> Option<&str>
The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.
sourcepub fn location_registration_exclude_s3_locations(&self) -> &[String]
pub fn location_registration_exclude_s3_locations(&self) -> &[String]
Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .location_registration_exclude_s3_locations.is_none()
.
source§impl LakeFormationConfiguration
impl LakeFormationConfiguration
sourcepub fn builder() -> LakeFormationConfigurationBuilder
pub fn builder() -> LakeFormationConfigurationBuilder
Creates a new builder-style object to manufacture LakeFormationConfiguration
.
Trait Implementations§
source§impl Clone for LakeFormationConfiguration
impl Clone for LakeFormationConfiguration
source§fn clone(&self) -> LakeFormationConfiguration
fn clone(&self) -> LakeFormationConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LakeFormationConfiguration
impl Debug for LakeFormationConfiguration
impl StructuralPartialEq for LakeFormationConfiguration
Auto Trait Implementations§
impl Freeze for LakeFormationConfiguration
impl RefUnwindSafe for LakeFormationConfiguration
impl Send for LakeFormationConfiguration
impl Sync for LakeFormationConfiguration
impl Unpin for LakeFormationConfiguration
impl UnwindSafe for LakeFormationConfiguration
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
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)
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>
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>
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 more