#[non_exhaustive]pub struct UpdateDataLakeInput {
pub configurations: Option<Vec<DataLakeConfiguration>>,
pub meta_store_manager_role_arn: Option<String>,
}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.configurations: Option<Vec<DataLakeConfiguration>>Specify the Region or Regions that will contribute data to the rollup region.
meta_store_manager_role_arn: Option<String>The Amazon Resource Name (ARN) used to create and update the Glue table. This table contains partitions generated by the ingestion and normalization of Amazon Web Services log sources and custom sources.
Implementations§
source§impl UpdateDataLakeInput
impl UpdateDataLakeInput
sourcepub fn configurations(&self) -> &[DataLakeConfiguration]
pub fn configurations(&self) -> &[DataLakeConfiguration]
Specify the Region or Regions that will contribute data to the rollup region.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .configurations.is_none().
sourcepub fn meta_store_manager_role_arn(&self) -> Option<&str>
pub fn meta_store_manager_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) used to create and update the Glue table. This table contains partitions generated by the ingestion and normalization of Amazon Web Services log sources and custom sources.
source§impl UpdateDataLakeInput
impl UpdateDataLakeInput
sourcepub fn builder() -> UpdateDataLakeInputBuilder
pub fn builder() -> UpdateDataLakeInputBuilder
Creates a new builder-style object to manufacture UpdateDataLakeInput.
Trait Implementations§
source§impl Clone for UpdateDataLakeInput
impl Clone for UpdateDataLakeInput
source§fn clone(&self) -> UpdateDataLakeInput
fn clone(&self) -> UpdateDataLakeInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateDataLakeInput
impl Debug for UpdateDataLakeInput
source§impl PartialEq for UpdateDataLakeInput
impl PartialEq for UpdateDataLakeInput
source§fn eq(&self, other: &UpdateDataLakeInput) -> bool
fn eq(&self, other: &UpdateDataLakeInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDataLakeInput
Auto Trait Implementations§
impl Freeze for UpdateDataLakeInput
impl RefUnwindSafe for UpdateDataLakeInput
impl Send for UpdateDataLakeInput
impl Sync for UpdateDataLakeInput
impl Unpin for UpdateDataLakeInput
impl UnwindSafe for UpdateDataLakeInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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