#[non_exhaustive]pub struct UpdateS3ResourcesOutput {
pub failed_s3_resources: Option<Vec<FailedS3Resource>>,
/* private fields */
}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.failed_s3_resources: Option<Vec<FailedS3Resource>>(Discontinued) The S3 resources whose classification types can't be updated. An error code and an error message are provided for each failed item.
Implementations§
source§impl UpdateS3ResourcesOutput
impl UpdateS3ResourcesOutput
sourcepub fn failed_s3_resources(&self) -> Option<&[FailedS3Resource]>
pub fn failed_s3_resources(&self) -> Option<&[FailedS3Resource]>
(Discontinued) The S3 resources whose classification types can't be updated. An error code and an error message are provided for each failed item.
source§impl UpdateS3ResourcesOutput
impl UpdateS3ResourcesOutput
sourcepub fn builder() -> UpdateS3ResourcesOutputBuilder
pub fn builder() -> UpdateS3ResourcesOutputBuilder
Creates a new builder-style object to manufacture UpdateS3ResourcesOutput.
Trait Implementations§
source§impl Clone for UpdateS3ResourcesOutput
impl Clone for UpdateS3ResourcesOutput
source§fn clone(&self) -> UpdateS3ResourcesOutput
fn clone(&self) -> UpdateS3ResourcesOutput
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 UpdateS3ResourcesOutput
impl Debug for UpdateS3ResourcesOutput
source§impl PartialEq<UpdateS3ResourcesOutput> for UpdateS3ResourcesOutput
impl PartialEq<UpdateS3ResourcesOutput> for UpdateS3ResourcesOutput
source§fn eq(&self, other: &UpdateS3ResourcesOutput) -> bool
fn eq(&self, other: &UpdateS3ResourcesOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateS3ResourcesOutput
impl RequestId for UpdateS3ResourcesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for UpdateS3ResourcesOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateS3ResourcesOutput
impl Send for UpdateS3ResourcesOutput
impl Sync for UpdateS3ResourcesOutput
impl Unpin for UpdateS3ResourcesOutput
impl UnwindSafe for UpdateS3ResourcesOutput
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