#[non_exhaustive]pub struct ControlDomainInsightsBuilder { /* private fields */ }
Expand description
A builder for ControlDomainInsights
.
Implementations§
source§impl ControlDomainInsightsBuilder
impl ControlDomainInsightsBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The unique identifier for the control domain.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The unique identifier for the control domain.
sourcepub fn controls_count_by_noncompliant_evidence(self, input: i32) -> Self
pub fn controls_count_by_noncompliant_evidence(self, input: i32) -> Self
The number of controls in the control domain that collected non-compliant evidence on the lastUpdated
date.
sourcepub fn set_controls_count_by_noncompliant_evidence(
self,
input: Option<i32>
) -> Self
pub fn set_controls_count_by_noncompliant_evidence( self, input: Option<i32> ) -> Self
The number of controls in the control domain that collected non-compliant evidence on the lastUpdated
date.
sourcepub fn get_controls_count_by_noncompliant_evidence(&self) -> &Option<i32>
pub fn get_controls_count_by_noncompliant_evidence(&self) -> &Option<i32>
The number of controls in the control domain that collected non-compliant evidence on the lastUpdated
date.
sourcepub fn total_controls_count(self, input: i32) -> Self
pub fn total_controls_count(self, input: i32) -> Self
The total number of controls in the control domain.
sourcepub fn set_total_controls_count(self, input: Option<i32>) -> Self
pub fn set_total_controls_count(self, input: Option<i32>) -> Self
The total number of controls in the control domain.
sourcepub fn get_total_controls_count(&self) -> &Option<i32>
pub fn get_total_controls_count(&self) -> &Option<i32>
The total number of controls in the control domain.
sourcepub fn evidence_insights(self, input: EvidenceInsights) -> Self
pub fn evidence_insights(self, input: EvidenceInsights) -> Self
A breakdown of the compliance check status for the evidence that’s associated with the control domain.
sourcepub fn set_evidence_insights(self, input: Option<EvidenceInsights>) -> Self
pub fn set_evidence_insights(self, input: Option<EvidenceInsights>) -> Self
A breakdown of the compliance check status for the evidence that’s associated with the control domain.
sourcepub fn get_evidence_insights(&self) -> &Option<EvidenceInsights>
pub fn get_evidence_insights(&self) -> &Option<EvidenceInsights>
A breakdown of the compliance check status for the evidence that’s associated with the control domain.
sourcepub fn last_updated(self, input: DateTime) -> Self
pub fn last_updated(self, input: DateTime) -> Self
The time when the control domain insights were last updated.
sourcepub fn set_last_updated(self, input: Option<DateTime>) -> Self
pub fn set_last_updated(self, input: Option<DateTime>) -> Self
The time when the control domain insights were last updated.
sourcepub fn get_last_updated(&self) -> &Option<DateTime>
pub fn get_last_updated(&self) -> &Option<DateTime>
The time when the control domain insights were last updated.
sourcepub fn build(self) -> ControlDomainInsights
pub fn build(self) -> ControlDomainInsights
Consumes the builder and constructs a ControlDomainInsights
.
Trait Implementations§
source§impl Clone for ControlDomainInsightsBuilder
impl Clone for ControlDomainInsightsBuilder
source§fn clone(&self) -> ControlDomainInsightsBuilder
fn clone(&self) -> ControlDomainInsightsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ControlDomainInsightsBuilder
impl Debug for ControlDomainInsightsBuilder
source§impl Default for ControlDomainInsightsBuilder
impl Default for ControlDomainInsightsBuilder
source§fn default() -> ControlDomainInsightsBuilder
fn default() -> ControlDomainInsightsBuilder
source§impl PartialEq for ControlDomainInsightsBuilder
impl PartialEq for ControlDomainInsightsBuilder
source§fn eq(&self, other: &ControlDomainInsightsBuilder) -> bool
fn eq(&self, other: &ControlDomainInsightsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.