#[non_exhaustive]pub struct GetPoliciesStatsOutput {
pub access_policy_stats: Option<AccessPolicyStats>,
pub security_policy_stats: Option<SecurityPolicyStats>,
pub security_config_stats: Option<SecurityConfigStats>,
pub lifecycle_policy_stats: Option<LifecyclePolicyStats>,
pub total_policy_count: Option<i64>,
/* 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_stats: Option<AccessPolicyStats>
Information about the data access policies in your account.
security_policy_stats: Option<SecurityPolicyStats>
Information about the security policies in your account.
security_config_stats: Option<SecurityConfigStats>
Information about the security configurations in your account.
lifecycle_policy_stats: Option<LifecyclePolicyStats>
Information about the lifecycle policies in your account.
total_policy_count: Option<i64>
The total number of OpenSearch Serverless security policies and configurations in your account.
Implementations§
source§impl GetPoliciesStatsOutput
impl GetPoliciesStatsOutput
sourcepub fn access_policy_stats(&self) -> Option<&AccessPolicyStats>
pub fn access_policy_stats(&self) -> Option<&AccessPolicyStats>
Information about the data access policies in your account.
sourcepub fn security_policy_stats(&self) -> Option<&SecurityPolicyStats>
pub fn security_policy_stats(&self) -> Option<&SecurityPolicyStats>
Information about the security policies in your account.
sourcepub fn security_config_stats(&self) -> Option<&SecurityConfigStats>
pub fn security_config_stats(&self) -> Option<&SecurityConfigStats>
Information about the security configurations in your account.
sourcepub fn lifecycle_policy_stats(&self) -> Option<&LifecyclePolicyStats>
pub fn lifecycle_policy_stats(&self) -> Option<&LifecyclePolicyStats>
Information about the lifecycle policies in your account.
sourcepub fn total_policy_count(&self) -> Option<i64>
pub fn total_policy_count(&self) -> Option<i64>
The total number of OpenSearch Serverless security policies and configurations in your account.
source§impl GetPoliciesStatsOutput
impl GetPoliciesStatsOutput
sourcepub fn builder() -> GetPoliciesStatsOutputBuilder
pub fn builder() -> GetPoliciesStatsOutputBuilder
Creates a new builder-style object to manufacture GetPoliciesStatsOutput
.
Trait Implementations§
source§impl Clone for GetPoliciesStatsOutput
impl Clone for GetPoliciesStatsOutput
source§fn clone(&self) -> GetPoliciesStatsOutput
fn clone(&self) -> GetPoliciesStatsOutput
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 GetPoliciesStatsOutput
impl Debug for GetPoliciesStatsOutput
source§impl PartialEq for GetPoliciesStatsOutput
impl PartialEq for GetPoliciesStatsOutput
source§fn eq(&self, other: &GetPoliciesStatsOutput) -> bool
fn eq(&self, other: &GetPoliciesStatsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetPoliciesStatsOutput
impl RequestId for GetPoliciesStatsOutput
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 GetPoliciesStatsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetPoliciesStatsOutput
impl Send for GetPoliciesStatsOutput
impl Sync for GetPoliciesStatsOutput
impl Unpin for GetPoliciesStatsOutput
impl UnwindSafe for GetPoliciesStatsOutput
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.