Struct aws_sdk_config::types::AggregateEvaluationResult
source · #[non_exhaustive]pub struct AggregateEvaluationResult {
pub evaluation_result_identifier: Option<EvaluationResultIdentifier>,
pub compliance_type: Option<ComplianceType>,
pub result_recorded_time: Option<DateTime>,
pub config_rule_invoked_time: Option<DateTime>,
pub annotation: Option<String>,
pub account_id: Option<String>,
pub aws_region: Option<String>,
}Expand description
The details of an Config evaluation for an account ID and region in an aggregator. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information.
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.evaluation_result_identifier: Option<EvaluationResultIdentifier>Uniquely identifies the evaluation result.
compliance_type: Option<ComplianceType>The resource compliance status.
For the AggregationEvaluationResult data type, Config supports only the COMPLIANT and NON_COMPLIANT. Config does not support the NOT_APPLICABLE and INSUFFICIENT_DATA value.
result_recorded_time: Option<DateTime>The time when Config recorded the aggregate evaluation result.
config_rule_invoked_time: Option<DateTime>The time when the Config rule evaluated the Amazon Web Services resource.
annotation: Option<String>Supplementary information about how the agrregate evaluation determined the compliance.
account_id: Option<String>The 12-digit account ID of the source account.
aws_region: Option<String>The source region from where the data is aggregated.
Implementations§
source§impl AggregateEvaluationResult
impl AggregateEvaluationResult
sourcepub fn evaluation_result_identifier(
&self,
) -> Option<&EvaluationResultIdentifier>
pub fn evaluation_result_identifier( &self, ) -> Option<&EvaluationResultIdentifier>
Uniquely identifies the evaluation result.
sourcepub fn compliance_type(&self) -> Option<&ComplianceType>
pub fn compliance_type(&self) -> Option<&ComplianceType>
The resource compliance status.
For the AggregationEvaluationResult data type, Config supports only the COMPLIANT and NON_COMPLIANT. Config does not support the NOT_APPLICABLE and INSUFFICIENT_DATA value.
sourcepub fn result_recorded_time(&self) -> Option<&DateTime>
pub fn result_recorded_time(&self) -> Option<&DateTime>
The time when Config recorded the aggregate evaluation result.
sourcepub fn config_rule_invoked_time(&self) -> Option<&DateTime>
pub fn config_rule_invoked_time(&self) -> Option<&DateTime>
The time when the Config rule evaluated the Amazon Web Services resource.
sourcepub fn annotation(&self) -> Option<&str>
pub fn annotation(&self) -> Option<&str>
Supplementary information about how the agrregate evaluation determined the compliance.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The 12-digit account ID of the source account.
sourcepub fn aws_region(&self) -> Option<&str>
pub fn aws_region(&self) -> Option<&str>
The source region from where the data is aggregated.
source§impl AggregateEvaluationResult
impl AggregateEvaluationResult
sourcepub fn builder() -> AggregateEvaluationResultBuilder
pub fn builder() -> AggregateEvaluationResultBuilder
Creates a new builder-style object to manufacture AggregateEvaluationResult.
Trait Implementations§
source§impl Clone for AggregateEvaluationResult
impl Clone for AggregateEvaluationResult
source§fn clone(&self) -> AggregateEvaluationResult
fn clone(&self) -> AggregateEvaluationResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AggregateEvaluationResult
impl Debug for AggregateEvaluationResult
source§impl PartialEq for AggregateEvaluationResult
impl PartialEq for AggregateEvaluationResult
source§fn eq(&self, other: &AggregateEvaluationResult) -> bool
fn eq(&self, other: &AggregateEvaluationResult) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AggregateEvaluationResult
Auto Trait Implementations§
impl Freeze for AggregateEvaluationResult
impl RefUnwindSafe for AggregateEvaluationResult
impl Send for AggregateEvaluationResult
impl Sync for AggregateEvaluationResult
impl Unpin for AggregateEvaluationResult
impl UnwindSafe for AggregateEvaluationResult
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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