#[non_exhaustive]pub struct AggregateEvaluationResultBuilder { /* private fields */ }Expand description
A builder for AggregateEvaluationResult.
Implementations§
source§impl AggregateEvaluationResultBuilder
impl AggregateEvaluationResultBuilder
sourcepub fn evaluation_result_identifier(
self,
input: EvaluationResultIdentifier
) -> Self
pub fn evaluation_result_identifier( self, input: EvaluationResultIdentifier ) -> Self
Uniquely identifies the evaluation result.
sourcepub fn set_evaluation_result_identifier(
self,
input: Option<EvaluationResultIdentifier>
) -> Self
pub fn set_evaluation_result_identifier( self, input: Option<EvaluationResultIdentifier> ) -> Self
Uniquely identifies the evaluation result.
sourcepub fn get_evaluation_result_identifier(
&self
) -> &Option<EvaluationResultIdentifier>
pub fn get_evaluation_result_identifier( &self ) -> &Option<EvaluationResultIdentifier>
Uniquely identifies the evaluation result.
sourcepub fn compliance_type(self, input: ComplianceType) -> Self
pub fn compliance_type(self, input: ComplianceType) -> Self
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 set_compliance_type(self, input: Option<ComplianceType>) -> Self
pub fn set_compliance_type(self, input: Option<ComplianceType>) -> Self
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 get_compliance_type(&self) -> &Option<ComplianceType>
pub fn get_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, input: DateTime) -> Self
pub fn result_recorded_time(self, input: DateTime) -> Self
The time when Config recorded the aggregate evaluation result.
sourcepub fn set_result_recorded_time(self, input: Option<DateTime>) -> Self
pub fn set_result_recorded_time(self, input: Option<DateTime>) -> Self
The time when Config recorded the aggregate evaluation result.
sourcepub fn get_result_recorded_time(&self) -> &Option<DateTime>
pub fn get_result_recorded_time(&self) -> &Option<DateTime>
The time when Config recorded the aggregate evaluation result.
sourcepub fn config_rule_invoked_time(self, input: DateTime) -> Self
pub fn config_rule_invoked_time(self, input: DateTime) -> Self
The time when the Config rule evaluated the Amazon Web Services resource.
sourcepub fn set_config_rule_invoked_time(self, input: Option<DateTime>) -> Self
pub fn set_config_rule_invoked_time(self, input: Option<DateTime>) -> Self
The time when the Config rule evaluated the Amazon Web Services resource.
sourcepub fn get_config_rule_invoked_time(&self) -> &Option<DateTime>
pub fn get_config_rule_invoked_time(&self) -> &Option<DateTime>
The time when the Config rule evaluated the Amazon Web Services resource.
sourcepub fn annotation(self, input: impl Into<String>) -> Self
pub fn annotation(self, input: impl Into<String>) -> Self
Supplementary information about how the agrregate evaluation determined the compliance.
sourcepub fn set_annotation(self, input: Option<String>) -> Self
pub fn set_annotation(self, input: Option<String>) -> Self
Supplementary information about how the agrregate evaluation determined the compliance.
sourcepub fn get_annotation(&self) -> &Option<String>
pub fn get_annotation(&self) -> &Option<String>
Supplementary information about how the agrregate evaluation determined the compliance.
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The 12-digit account ID of the source account.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The 12-digit account ID of the source account.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The 12-digit account ID of the source account.
sourcepub fn aws_region(self, input: impl Into<String>) -> Self
pub fn aws_region(self, input: impl Into<String>) -> Self
The source region from where the data is aggregated.
sourcepub fn set_aws_region(self, input: Option<String>) -> Self
pub fn set_aws_region(self, input: Option<String>) -> Self
The source region from where the data is aggregated.
sourcepub fn get_aws_region(&self) -> &Option<String>
pub fn get_aws_region(&self) -> &Option<String>
The source region from where the data is aggregated.
sourcepub fn build(self) -> AggregateEvaluationResult
pub fn build(self) -> AggregateEvaluationResult
Consumes the builder and constructs a AggregateEvaluationResult.
Trait Implementations§
source§impl Clone for AggregateEvaluationResultBuilder
impl Clone for AggregateEvaluationResultBuilder
source§fn clone(&self) -> AggregateEvaluationResultBuilder
fn clone(&self) -> AggregateEvaluationResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AggregateEvaluationResultBuilder
impl Default for AggregateEvaluationResultBuilder
source§fn default() -> AggregateEvaluationResultBuilder
fn default() -> AggregateEvaluationResultBuilder
source§impl PartialEq for AggregateEvaluationResultBuilder
impl PartialEq for AggregateEvaluationResultBuilder
source§fn eq(&self, other: &AggregateEvaluationResultBuilder) -> bool
fn eq(&self, other: &AggregateEvaluationResultBuilder) -> bool
self and other values to be equal, and is used
by ==.