#[non_exhaustive]pub struct DataLakeUpdateException {
pub reason: Option<String>,
pub code: Option<String>,
}Expand description
The details of the last UpdateDataLake or DeleteDataLake API request which failed.
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.reason: Option<String>The reason for the exception of the last UpdateDataLakeor DeleteDataLake API request.
code: Option<String>The reason code for the exception of the last UpdateDataLake or DeleteDataLake API request.
Implementations§
source§impl DataLakeUpdateException
impl DataLakeUpdateException
sourcepub fn builder() -> DataLakeUpdateExceptionBuilder
pub fn builder() -> DataLakeUpdateExceptionBuilder
Creates a new builder-style object to manufacture DataLakeUpdateException.
Trait Implementations§
source§impl Clone for DataLakeUpdateException
impl Clone for DataLakeUpdateException
source§fn clone(&self) -> DataLakeUpdateException
fn clone(&self) -> DataLakeUpdateException
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 DataLakeUpdateException
impl Debug for DataLakeUpdateException
source§impl PartialEq<DataLakeUpdateException> for DataLakeUpdateException
impl PartialEq<DataLakeUpdateException> for DataLakeUpdateException
source§fn eq(&self, other: &DataLakeUpdateException) -> bool
fn eq(&self, other: &DataLakeUpdateException) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataLakeUpdateException
Auto Trait Implementations§
impl RefUnwindSafe for DataLakeUpdateException
impl Send for DataLakeUpdateException
impl Sync for DataLakeUpdateException
impl Unpin for DataLakeUpdateException
impl UnwindSafe for DataLakeUpdateException
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