#[non_exhaustive]pub struct DataLakeUpdateStatusBuilder { /* private fields */ }Expand description
A builder for DataLakeUpdateStatus.
Implementations§
source§impl DataLakeUpdateStatusBuilder
impl DataLakeUpdateStatusBuilder
sourcepub fn request_id(self, input: impl Into<String>) -> Self
pub fn request_id(self, input: impl Into<String>) -> Self
The unique ID for the last UpdateDataLake or DeleteDataLake API request.
sourcepub fn set_request_id(self, input: Option<String>) -> Self
pub fn set_request_id(self, input: Option<String>) -> Self
The unique ID for the last UpdateDataLake or DeleteDataLake API request.
sourcepub fn get_request_id(&self) -> &Option<String>
pub fn get_request_id(&self) -> &Option<String>
The unique ID for the last UpdateDataLake or DeleteDataLake API request.
sourcepub fn status(self, input: DataLakeStatus) -> Self
pub fn status(self, input: DataLakeStatus) -> Self
The status of the last UpdateDataLake or DeleteDataLake API request that was requested.
sourcepub fn set_status(self, input: Option<DataLakeStatus>) -> Self
pub fn set_status(self, input: Option<DataLakeStatus>) -> Self
The status of the last UpdateDataLake or DeleteDataLake API request that was requested.
sourcepub fn get_status(&self) -> &Option<DataLakeStatus>
pub fn get_status(&self) -> &Option<DataLakeStatus>
The status of the last UpdateDataLake or DeleteDataLake API request that was requested.
sourcepub fn exception(self, input: DataLakeUpdateException) -> Self
pub fn exception(self, input: DataLakeUpdateException) -> Self
The details of the last UpdateDataLakeor DeleteDataLake API request which failed.
sourcepub fn set_exception(self, input: Option<DataLakeUpdateException>) -> Self
pub fn set_exception(self, input: Option<DataLakeUpdateException>) -> Self
The details of the last UpdateDataLakeor DeleteDataLake API request which failed.
sourcepub fn get_exception(&self) -> &Option<DataLakeUpdateException>
pub fn get_exception(&self) -> &Option<DataLakeUpdateException>
The details of the last UpdateDataLakeor DeleteDataLake API request which failed.
sourcepub fn build(self) -> DataLakeUpdateStatus
pub fn build(self) -> DataLakeUpdateStatus
Consumes the builder and constructs a DataLakeUpdateStatus.
Trait Implementations§
source§impl Clone for DataLakeUpdateStatusBuilder
impl Clone for DataLakeUpdateStatusBuilder
source§fn clone(&self) -> DataLakeUpdateStatusBuilder
fn clone(&self) -> DataLakeUpdateStatusBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataLakeUpdateStatusBuilder
impl Debug for DataLakeUpdateStatusBuilder
source§impl Default for DataLakeUpdateStatusBuilder
impl Default for DataLakeUpdateStatusBuilder
source§fn default() -> DataLakeUpdateStatusBuilder
fn default() -> DataLakeUpdateStatusBuilder
source§impl PartialEq for DataLakeUpdateStatusBuilder
impl PartialEq for DataLakeUpdateStatusBuilder
source§fn eq(&self, other: &DataLakeUpdateStatusBuilder) -> bool
fn eq(&self, other: &DataLakeUpdateStatusBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataLakeUpdateStatusBuilder
Auto Trait Implementations§
impl Freeze for DataLakeUpdateStatusBuilder
impl RefUnwindSafe for DataLakeUpdateStatusBuilder
impl Send for DataLakeUpdateStatusBuilder
impl Sync for DataLakeUpdateStatusBuilder
impl Unpin for DataLakeUpdateStatusBuilder
impl UnwindSafe for DataLakeUpdateStatusBuilder
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