Interface ExecutionDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionDetails.Builder,ExecutionDetails>,SdkBuilder<ExecutionDetails.Builder,ExecutionDetails>,SdkPojo
- Enclosing class:
- ExecutionDetails
public static interface ExecutionDetails.Builder extends SdkPojo, CopyableBuilder<ExecutionDetails.Builder,ExecutionDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionDetails.BuilderexternalExecutionId(String externalExecutionId)The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy.ExecutionDetails.BuilderpercentComplete(Integer percentComplete)The percentage of work completed on the action, represented on a scale of 0 to 100 percent.ExecutionDetails.Buildersummary(String summary)The summary of the current status of the actions.-
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
-
summary
ExecutionDetails.Builder summary(String summary)
The summary of the current status of the actions.
- Parameters:
summary- The summary of the current status of the actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
externalExecutionId
ExecutionDetails.Builder externalExecutionId(String externalExecutionId)
The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy.
- Parameters:
externalExecutionId- The system-generated unique ID of this action used to identify this job worker in any external systems, such as CodeDeploy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
percentComplete
ExecutionDetails.Builder percentComplete(Integer percentComplete)
The percentage of work completed on the action, represented on a scale of 0 to 100 percent.
- Parameters:
percentComplete- The percentage of work completed on the action, represented on a scale of 0 to 100 percent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-