#[non_exhaustive]pub struct EvidenceInsightsBuilder { /* private fields */ }Expand description
A builder for EvidenceInsights.
Implementations§
source§impl EvidenceInsightsBuilder
impl EvidenceInsightsBuilder
sourcepub fn noncompliant_evidence_count(self, input: i32) -> Self
pub fn noncompliant_evidence_count(self, input: i32) -> Self
The number of compliance check evidence that Audit Manager classified as non-compliant. This includes evidence that was collected from Security Hub with a Fail ruling, or collected from Config with a Non-compliant ruling.
sourcepub fn set_noncompliant_evidence_count(self, input: Option<i32>) -> Self
pub fn set_noncompliant_evidence_count(self, input: Option<i32>) -> Self
The number of compliance check evidence that Audit Manager classified as non-compliant. This includes evidence that was collected from Security Hub with a Fail ruling, or collected from Config with a Non-compliant ruling.
sourcepub fn get_noncompliant_evidence_count(&self) -> &Option<i32>
pub fn get_noncompliant_evidence_count(&self) -> &Option<i32>
The number of compliance check evidence that Audit Manager classified as non-compliant. This includes evidence that was collected from Security Hub with a Fail ruling, or collected from Config with a Non-compliant ruling.
sourcepub fn compliant_evidence_count(self, input: i32) -> Self
pub fn compliant_evidence_count(self, input: i32) -> Self
The number of compliance check evidence that Audit Manager classified as compliant. This includes evidence that was collected from Security Hub with a Pass ruling, or collected from Config with a Compliant ruling.
sourcepub fn set_compliant_evidence_count(self, input: Option<i32>) -> Self
pub fn set_compliant_evidence_count(self, input: Option<i32>) -> Self
The number of compliance check evidence that Audit Manager classified as compliant. This includes evidence that was collected from Security Hub with a Pass ruling, or collected from Config with a Compliant ruling.
sourcepub fn get_compliant_evidence_count(&self) -> &Option<i32>
pub fn get_compliant_evidence_count(&self) -> &Option<i32>
The number of compliance check evidence that Audit Manager classified as compliant. This includes evidence that was collected from Security Hub with a Pass ruling, or collected from Config with a Compliant ruling.
sourcepub fn inconclusive_evidence_count(self, input: i32) -> Self
pub fn inconclusive_evidence_count(self, input: i32) -> Self
The number of evidence that a compliance check ruling isn't available for. Evidence is inconclusive when the associated control uses Security Hub or Config as a data source but you didn't enable those services. This is also the case when a control uses a data source that doesn’t support compliance checks (for example, manual evidence, API calls, or CloudTrail).
If evidence has a compliance check status of not applicable in the console, it's classified as inconclusive in EvidenceInsights data.
sourcepub fn set_inconclusive_evidence_count(self, input: Option<i32>) -> Self
pub fn set_inconclusive_evidence_count(self, input: Option<i32>) -> Self
The number of evidence that a compliance check ruling isn't available for. Evidence is inconclusive when the associated control uses Security Hub or Config as a data source but you didn't enable those services. This is also the case when a control uses a data source that doesn’t support compliance checks (for example, manual evidence, API calls, or CloudTrail).
If evidence has a compliance check status of not applicable in the console, it's classified as inconclusive in EvidenceInsights data.
sourcepub fn get_inconclusive_evidence_count(&self) -> &Option<i32>
pub fn get_inconclusive_evidence_count(&self) -> &Option<i32>
The number of evidence that a compliance check ruling isn't available for. Evidence is inconclusive when the associated control uses Security Hub or Config as a data source but you didn't enable those services. This is also the case when a control uses a data source that doesn’t support compliance checks (for example, manual evidence, API calls, or CloudTrail).
If evidence has a compliance check status of not applicable in the console, it's classified as inconclusive in EvidenceInsights data.
sourcepub fn build(self) -> EvidenceInsights
pub fn build(self) -> EvidenceInsights
Consumes the builder and constructs a EvidenceInsights.
Trait Implementations§
source§impl Clone for EvidenceInsightsBuilder
impl Clone for EvidenceInsightsBuilder
source§fn clone(&self) -> EvidenceInsightsBuilder
fn clone(&self) -> EvidenceInsightsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for EvidenceInsightsBuilder
impl Debug for EvidenceInsightsBuilder
source§impl Default for EvidenceInsightsBuilder
impl Default for EvidenceInsightsBuilder
source§fn default() -> EvidenceInsightsBuilder
fn default() -> EvidenceInsightsBuilder
source§impl PartialEq for EvidenceInsightsBuilder
impl PartialEq for EvidenceInsightsBuilder
source§fn eq(&self, other: &EvidenceInsightsBuilder) -> bool
fn eq(&self, other: &EvidenceInsightsBuilder) -> bool
self and other values to be equal, and is used
by ==.