Struct aws_sdk_securitylake::types::DataLakeUpdateStatus
source · #[non_exhaustive]pub struct DataLakeUpdateStatus {
pub request_id: Option<String>,
pub status: Option<DataLakeStatus>,
pub exception: Option<DataLakeUpdateException>,
}
Expand description
The status of the last UpdateDataLake
or DeleteDataLake
API request. This is set to Completed after the configuration is updated, or removed if deletion of the data lake is successful.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.request_id: Option<String>
The unique ID for the last UpdateDataLake
or DeleteDataLake
API request.
status: Option<DataLakeStatus>
The status of the last UpdateDataLake
or DeleteDataLake
API request that was requested.
exception: Option<DataLakeUpdateException>
The details of the last UpdateDataLake
or DeleteDataLake
API request which failed.
Implementations§
source§impl DataLakeUpdateStatus
impl DataLakeUpdateStatus
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The unique ID for the last UpdateDataLake
or DeleteDataLake
API request.
sourcepub fn status(&self) -> Option<&DataLakeStatus>
pub fn status(&self) -> Option<&DataLakeStatus>
The status of the last UpdateDataLake
or DeleteDataLake
API request that was requested.
sourcepub fn exception(&self) -> Option<&DataLakeUpdateException>
pub fn exception(&self) -> Option<&DataLakeUpdateException>
The details of the last UpdateDataLake
or DeleteDataLake
API request which failed.
source§impl DataLakeUpdateStatus
impl DataLakeUpdateStatus
sourcepub fn builder() -> DataLakeUpdateStatusBuilder
pub fn builder() -> DataLakeUpdateStatusBuilder
Creates a new builder-style object to manufacture DataLakeUpdateStatus
.
Trait Implementations§
source§impl Clone for DataLakeUpdateStatus
impl Clone for DataLakeUpdateStatus
source§fn clone(&self) -> DataLakeUpdateStatus
fn clone(&self) -> DataLakeUpdateStatus
Returns a copy 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 DataLakeUpdateStatus
impl Debug for DataLakeUpdateStatus
source§impl PartialEq for DataLakeUpdateStatus
impl PartialEq for DataLakeUpdateStatus
source§fn eq(&self, other: &DataLakeUpdateStatus) -> bool
fn eq(&self, other: &DataLakeUpdateStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DataLakeUpdateStatus
Auto Trait Implementations§
impl RefUnwindSafe for DataLakeUpdateStatus
impl Send for DataLakeUpdateStatus
impl Sync for DataLakeUpdateStatus
impl Unpin for DataLakeUpdateStatus
impl UnwindSafe for DataLakeUpdateStatus
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
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>
Creates a shared type from an unshared type.