Interface TaskStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TaskStatistics.Builder,TaskStatistics>,SdkBuilder<TaskStatistics.Builder,TaskStatistics>,SdkPojo
- Enclosing class:
- TaskStatistics
public static interface TaskStatistics.Builder extends SdkPojo, CopyableBuilder<TaskStatistics.Builder,TaskStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskStatistics.BuildercanceledChecks(Integer canceledChecks)The number of checks that did not run because the audit was canceled.TaskStatistics.BuildercompliantChecks(Integer compliantChecks)The number of checks that found compliant resources.TaskStatistics.BuilderfailedChecks(Integer failedChecks)The number of checks.TaskStatistics.BuilderinProgressChecks(Integer inProgressChecks)The number of checks in progress.TaskStatistics.BuildernonCompliantChecks(Integer nonCompliantChecks)The number of checks that found noncompliant resources.TaskStatistics.BuildertotalChecks(Integer totalChecks)The number of checks in this audit.TaskStatistics.BuilderwaitingForDataCollectionChecks(Integer waitingForDataCollectionChecks)The number of checks waiting for data collection.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
totalChecks
TaskStatistics.Builder totalChecks(Integer totalChecks)
The number of checks in this audit.
- Parameters:
totalChecks- The number of checks in this audit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inProgressChecks
TaskStatistics.Builder inProgressChecks(Integer inProgressChecks)
The number of checks in progress.
- Parameters:
inProgressChecks- The number of checks in progress.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
waitingForDataCollectionChecks
TaskStatistics.Builder waitingForDataCollectionChecks(Integer waitingForDataCollectionChecks)
The number of checks waiting for data collection.
- Parameters:
waitingForDataCollectionChecks- The number of checks waiting for data collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
compliantChecks
TaskStatistics.Builder compliantChecks(Integer compliantChecks)
The number of checks that found compliant resources.
- Parameters:
compliantChecks- The number of checks that found compliant resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nonCompliantChecks
TaskStatistics.Builder nonCompliantChecks(Integer nonCompliantChecks)
The number of checks that found noncompliant resources.
- Parameters:
nonCompliantChecks- The number of checks that found noncompliant resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedChecks
TaskStatistics.Builder failedChecks(Integer failedChecks)
The number of checks.
- Parameters:
failedChecks- The number of checks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
canceledChecks
TaskStatistics.Builder canceledChecks(Integer canceledChecks)
The number of checks that did not run because the audit was canceled.
- Parameters:
canceledChecks- The number of checks that did not run because the audit was canceled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-