Interface RemediationExecutionStep.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RemediationExecutionStep.Builder,RemediationExecutionStep>,SdkBuilder<RemediationExecutionStep.Builder,RemediationExecutionStep>,SdkPojo
- Enclosing class:
- RemediationExecutionStep
public static interface RemediationExecutionStep.Builder extends SdkPojo, CopyableBuilder<RemediationExecutionStep.Builder,RemediationExecutionStep>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemediationExecutionStep.BuildererrorMessage(String errorMessage)An error message if the step was interrupted during execution.RemediationExecutionStep.Buildername(String name)The details of the step.RemediationExecutionStep.BuilderstartTime(Instant startTime)The time when the step started.RemediationExecutionStep.Builderstate(String state)The valid status of the step.RemediationExecutionStep.Builderstate(RemediationExecutionStepState state)The valid status of the step.RemediationExecutionStep.BuilderstopTime(Instant stopTime)The time when the step stopped.-
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
-
name
RemediationExecutionStep.Builder name(String name)
The details of the step.
- Parameters:
name- The details of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
RemediationExecutionStep.Builder state(String state)
The valid status of the step.
- Parameters:
state- The valid status of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RemediationExecutionStepState,RemediationExecutionStepState
-
state
RemediationExecutionStep.Builder state(RemediationExecutionStepState state)
The valid status of the step.
- Parameters:
state- The valid status of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RemediationExecutionStepState,RemediationExecutionStepState
-
errorMessage
RemediationExecutionStep.Builder errorMessage(String errorMessage)
An error message if the step was interrupted during execution.
- Parameters:
errorMessage- An error message if the step was interrupted during execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
RemediationExecutionStep.Builder startTime(Instant startTime)
The time when the step started.
- Parameters:
startTime- The time when the step started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stopTime
RemediationExecutionStep.Builder stopTime(Instant stopTime)
The time when the step stopped.
- Parameters:
stopTime- The time when the step stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-