Interface ProgressCounters.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ProgressCounters.Builder,ProgressCounters>
,SdkBuilder<ProgressCounters.Builder,ProgressCounters>
,SdkPojo
- Enclosing class:
- ProgressCounters
public static interface ProgressCounters.Builder extends SdkPojo, CopyableBuilder<ProgressCounters.Builder,ProgressCounters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProgressCounters.Builder
cancelledSteps(Integer cancelledSteps)
The total number of steps that the system cancelled in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.ProgressCounters.Builder
failedSteps(Integer failedSteps)
The total number of steps that failed to run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.ProgressCounters.Builder
successSteps(Integer successSteps)
The total number of steps that successfully completed in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.ProgressCounters.Builder
timedOutSteps(Integer timedOutSteps)
The total number of steps that timed out in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.ProgressCounters.Builder
totalSteps(Integer totalSteps)
The total number of steps run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
totalSteps
ProgressCounters.Builder totalSteps(Integer totalSteps)
The total number of steps run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.
- Parameters:
totalSteps
- The total number of steps run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
successSteps
ProgressCounters.Builder successSteps(Integer successSteps)
The total number of steps that successfully completed in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.
- Parameters:
successSteps
- The total number of steps that successfully completed in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedSteps
ProgressCounters.Builder failedSteps(Integer failedSteps)
The total number of steps that failed to run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.
- Parameters:
failedSteps
- The total number of steps that failed to run in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancelledSteps
ProgressCounters.Builder cancelledSteps(Integer cancelledSteps)
The total number of steps that the system cancelled in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.
- Parameters:
cancelledSteps
- The total number of steps that the system cancelled in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timedOutSteps
ProgressCounters.Builder timedOutSteps(Integer timedOutSteps)
The total number of steps that timed out in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.
- Parameters:
timedOutSteps
- The total number of steps that timed out in all specified Amazon Web Services Regions and Amazon Web Services accounts for the current Automation execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-