Interface PhaseContext.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PhaseContext.Builder,PhaseContext>,SdkBuilder<PhaseContext.Builder,PhaseContext>,SdkPojo
- Enclosing class:
- PhaseContext
public static interface PhaseContext.Builder extends SdkPojo, CopyableBuilder<PhaseContext.Builder,PhaseContext>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PhaseContext.Buildermessage(String message)An explanation of the build phase's context.PhaseContext.BuilderstatusCode(String statusCodeValue)The status code for the context of the build phase.-
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
-
statusCode
PhaseContext.Builder statusCode(String statusCodeValue)
The status code for the context of the build phase.
- Parameters:
statusCodeValue- The status code for the context of the build phase.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
PhaseContext.Builder message(String message)
An explanation of the build phase's context. This might include a command ID and an exit code.
- Parameters:
message- An explanation of the build phase's context. This might include a command ID and an exit code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-