Struct aws_sdk_iot::model::task_statistics::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for TaskStatistics
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn total_checks(self, input: i32) -> Self
pub fn total_checks(self, input: i32) -> Self
The number of checks in this audit.
sourcepub fn set_total_checks(self, input: Option<i32>) -> Self
pub fn set_total_checks(self, input: Option<i32>) -> Self
The number of checks in this audit.
sourcepub fn in_progress_checks(self, input: i32) -> Self
pub fn in_progress_checks(self, input: i32) -> Self
The number of checks in progress.
sourcepub fn set_in_progress_checks(self, input: Option<i32>) -> Self
pub fn set_in_progress_checks(self, input: Option<i32>) -> Self
The number of checks in progress.
sourcepub fn waiting_for_data_collection_checks(self, input: i32) -> Self
pub fn waiting_for_data_collection_checks(self, input: i32) -> Self
The number of checks waiting for data collection.
sourcepub fn set_waiting_for_data_collection_checks(self, input: Option<i32>) -> Self
pub fn set_waiting_for_data_collection_checks(self, input: Option<i32>) -> Self
The number of checks waiting for data collection.
sourcepub fn compliant_checks(self, input: i32) -> Self
pub fn compliant_checks(self, input: i32) -> Self
The number of checks that found compliant resources.
sourcepub fn set_compliant_checks(self, input: Option<i32>) -> Self
pub fn set_compliant_checks(self, input: Option<i32>) -> Self
The number of checks that found compliant resources.
sourcepub fn non_compliant_checks(self, input: i32) -> Self
pub fn non_compliant_checks(self, input: i32) -> Self
The number of checks that found noncompliant resources.
sourcepub fn set_non_compliant_checks(self, input: Option<i32>) -> Self
pub fn set_non_compliant_checks(self, input: Option<i32>) -> Self
The number of checks that found noncompliant resources.
sourcepub fn failed_checks(self, input: i32) -> Self
pub fn failed_checks(self, input: i32) -> Self
The number of checks.
sourcepub fn set_failed_checks(self, input: Option<i32>) -> Self
pub fn set_failed_checks(self, input: Option<i32>) -> Self
The number of checks.
sourcepub fn canceled_checks(self, input: i32) -> Self
pub fn canceled_checks(self, input: i32) -> Self
The number of checks that did not run because the audit was canceled.
sourcepub fn set_canceled_checks(self, input: Option<i32>) -> Self
pub fn set_canceled_checks(self, input: Option<i32>) -> Self
The number of checks that did not run because the audit was canceled.
sourcepub fn build(self) -> TaskStatistics
pub fn build(self) -> TaskStatistics
Consumes the builder and constructs a TaskStatistics
.