Struct aws_sdk_opensearchserverless::operation::update_access_policy::UpdateAccessPolicyOutput
source · #[non_exhaustive]pub struct UpdateAccessPolicyOutput {
pub access_policy_detail: Option<AccessPolicyDetail>,
/* 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.access_policy_detail: Option<AccessPolicyDetail>
Details about the updated access policy.
Implementations§
source§impl UpdateAccessPolicyOutput
impl UpdateAccessPolicyOutput
sourcepub fn access_policy_detail(&self) -> Option<&AccessPolicyDetail>
pub fn access_policy_detail(&self) -> Option<&AccessPolicyDetail>
Details about the updated access policy.
source§impl UpdateAccessPolicyOutput
impl UpdateAccessPolicyOutput
sourcepub fn builder() -> UpdateAccessPolicyOutputBuilder
pub fn builder() -> UpdateAccessPolicyOutputBuilder
Creates a new builder-style object to manufacture UpdateAccessPolicyOutput
.
Trait Implementations§
source§impl Clone for UpdateAccessPolicyOutput
impl Clone for UpdateAccessPolicyOutput
source§fn clone(&self) -> UpdateAccessPolicyOutput
fn clone(&self) -> UpdateAccessPolicyOutput
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 UpdateAccessPolicyOutput
impl Debug for UpdateAccessPolicyOutput
source§impl PartialEq for UpdateAccessPolicyOutput
impl PartialEq for UpdateAccessPolicyOutput
source§fn eq(&self, other: &UpdateAccessPolicyOutput) -> bool
fn eq(&self, other: &UpdateAccessPolicyOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateAccessPolicyOutput
impl RequestId for UpdateAccessPolicyOutput
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 UpdateAccessPolicyOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateAccessPolicyOutput
impl Send for UpdateAccessPolicyOutput
impl Sync for UpdateAccessPolicyOutput
impl Unpin for UpdateAccessPolicyOutput
impl UnwindSafe for UpdateAccessPolicyOutput
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