Struct aws_sdk_macie2::operation::update_reveal_configuration::UpdateRevealConfigurationOutput
source · #[non_exhaustive]pub struct UpdateRevealConfigurationOutput {
pub configuration: Option<RevealConfiguration>,
/* 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.configuration: Option<RevealConfiguration>
The new configuration settings and the status of the configuration for the account.
Implementations§
source§impl UpdateRevealConfigurationOutput
impl UpdateRevealConfigurationOutput
sourcepub fn configuration(&self) -> Option<&RevealConfiguration>
pub fn configuration(&self) -> Option<&RevealConfiguration>
The new configuration settings and the status of the configuration for the account.
source§impl UpdateRevealConfigurationOutput
impl UpdateRevealConfigurationOutput
sourcepub fn builder() -> UpdateRevealConfigurationOutputBuilder
pub fn builder() -> UpdateRevealConfigurationOutputBuilder
Creates a new builder-style object to manufacture UpdateRevealConfigurationOutput
.
Trait Implementations§
source§impl Clone for UpdateRevealConfigurationOutput
impl Clone for UpdateRevealConfigurationOutput
source§fn clone(&self) -> UpdateRevealConfigurationOutput
fn clone(&self) -> UpdateRevealConfigurationOutput
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 PartialEq<UpdateRevealConfigurationOutput> for UpdateRevealConfigurationOutput
impl PartialEq<UpdateRevealConfigurationOutput> for UpdateRevealConfigurationOutput
source§fn eq(&self, other: &UpdateRevealConfigurationOutput) -> bool
fn eq(&self, other: &UpdateRevealConfigurationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateRevealConfigurationOutput
impl RequestId for UpdateRevealConfigurationOutput
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 UpdateRevealConfigurationOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateRevealConfigurationOutput
impl Send for UpdateRevealConfigurationOutput
impl Sync for UpdateRevealConfigurationOutput
impl Unpin for UpdateRevealConfigurationOutput
impl UnwindSafe for UpdateRevealConfigurationOutput
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