Struct aws_sdk_elasticsearch::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 document and search endpoints, and the current status of those rules.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.options: String
The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
status: Option<OptionStatus>
The status of the access policy for the Elasticsearch domain. See OptionStatus
for the status information that's included.
Implementations§
source§impl AccessPoliciesStatus
impl AccessPoliciesStatus
sourcepub fn options(&self) -> &str
pub fn options(&self) -> &str
The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
sourcepub fn status(&self) -> Option<&OptionStatus>
pub fn status(&self) -> Option<&OptionStatus>
The status of the access policy for the Elasticsearch domain. See OptionStatus
for the status information that's included.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more