Interface EksAttemptContainerDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EksAttemptContainerDetail.Builder,EksAttemptContainerDetail>,SdkBuilder<EksAttemptContainerDetail.Builder,EksAttemptContainerDetail>,SdkPojo
- Enclosing class:
- EksAttemptContainerDetail
public static interface EksAttemptContainerDetail.Builder extends SdkPojo, CopyableBuilder<EksAttemptContainerDetail.Builder,EksAttemptContainerDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EksAttemptContainerDetail.BuildercontainerID(String containerID)The ID for the container.EksAttemptContainerDetail.BuilderexitCode(Integer exitCode)The exit code returned for the job attempt.EksAttemptContainerDetail.Buildername(String name)The name of a container.EksAttemptContainerDetail.Builderreason(String reason)A short (255 max characters) human-readable string to provide additional details for a running or stopped container.-
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
-
name
EksAttemptContainerDetail.Builder name(String name)
The name of a container.
- Parameters:
name- The name of a container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerID
EksAttemptContainerDetail.Builder containerID(String containerID)
The ID for the container.
- Parameters:
containerID- The ID for the container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exitCode
EksAttemptContainerDetail.Builder exitCode(Integer exitCode)
The exit code returned for the job attempt. A non-zero exit code is considered failed.
- Parameters:
exitCode- The exit code returned for the job attempt. A non-zero exit code is considered failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reason
EksAttemptContainerDetail.Builder reason(String reason)
A short (255 max characters) human-readable string to provide additional details for a running or stopped container.
- Parameters:
reason- A short (255 max characters) human-readable string to provide additional details for a running or stopped container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-