Struct aws_sdk_opensearch::types::AccessPoliciesStatus
source · #[non_exhaustive]pub struct AccessPoliciesStatus {
pub options: String,
pub status: Option<OptionStatus>,
}
Expand description
The configured access rules for the domain's search endpoint, and the current status of those rules.
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.options: String
The access policy configured for the domain. Access policies can be resource-based, IP-based, or IAM-based. For more information, see Configuring access policies.
status: Option<OptionStatus>
The status of the access policy for the domain.
Implementations§
source§impl AccessPoliciesStatus
impl AccessPoliciesStatus
sourcepub fn options(&self) -> &str
pub fn options(&self) -> &str
The access policy configured for the domain. Access policies can be resource-based, IP-based, or IAM-based. For more information, see Configuring access policies.
sourcepub fn status(&self) -> Option<&OptionStatus>
pub fn status(&self) -> Option<&OptionStatus>
The status of the access policy for the domain.
source§impl AccessPoliciesStatus
impl AccessPoliciesStatus
sourcepub fn builder() -> AccessPoliciesStatusBuilder
pub fn builder() -> AccessPoliciesStatusBuilder
Creates a new builder-style object to manufacture AccessPoliciesStatus
.
Trait Implementations§
source§impl Clone for AccessPoliciesStatus
impl Clone for AccessPoliciesStatus
source§fn clone(&self) -> AccessPoliciesStatus
fn clone(&self) -> AccessPoliciesStatus
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 AccessPoliciesStatus
impl Debug for AccessPoliciesStatus
source§impl PartialEq for AccessPoliciesStatus
impl PartialEq for AccessPoliciesStatus
source§fn eq(&self, other: &AccessPoliciesStatus) -> bool
fn eq(&self, other: &AccessPoliciesStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AccessPoliciesStatus
Auto Trait Implementations§
impl Freeze for AccessPoliciesStatus
impl RefUnwindSafe for AccessPoliciesStatus
impl Send for AccessPoliciesStatus
impl Sync for AccessPoliciesStatus
impl Unpin for AccessPoliciesStatus
impl UnwindSafe for AccessPoliciesStatus
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.