public static interface EksAttemptDetail.Builder extends SdkPojo, CopyableBuilder<EksAttemptDetail.Builder,EksAttemptDetail>
| Modifier and Type | Method and Description |
|---|---|
EksAttemptDetail.Builder |
containers(Collection<EksAttemptContainerDetail> containers)
The details for the final status of the containers for this job attempt.
|
EksAttemptDetail.Builder |
containers(Consumer<EksAttemptContainerDetail.Builder>... containers)
The details for the final status of the containers for this job attempt.
|
EksAttemptDetail.Builder |
containers(EksAttemptContainerDetail... containers)
The details for the final status of the containers for this job attempt.
|
EksAttemptDetail.Builder |
nodeName(String nodeName)
The name of the node for this job attempt.
|
EksAttemptDetail.Builder |
podName(String podName)
The name of the pod for this job attempt.
|
EksAttemptDetail.Builder |
startedAt(Long startedAt)
The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the
STARTING state to the RUNNING state). |
EksAttemptDetail.Builder |
statusReason(String statusReason)
A short, human-readable string to provide additional details for the current status of the job attempt.
|
EksAttemptDetail.Builder |
stoppedAt(Long stoppedAt)
The Unix timestamp (in milliseconds) for when the attempt was stopped.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildEksAttemptDetail.Builder containers(Collection<EksAttemptContainerDetail> containers)
The details for the final status of the containers for this job attempt.
containers - The details for the final status of the containers for this job attempt.EksAttemptDetail.Builder containers(EksAttemptContainerDetail... containers)
The details for the final status of the containers for this job attempt.
containers - The details for the final status of the containers for this job attempt.EksAttemptDetail.Builder containers(Consumer<EksAttemptContainerDetail.Builder>... containers)
The details for the final status of the containers for this job attempt.
This is a convenience method that creates an instance of theEksAttemptContainerDetail.Builder avoiding the need to
create one manually via
EksAttemptContainerDetail.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #containers(List.
containers - a consumer that will call methods on
EksAttemptContainerDetail.Builder#containers(java.util.Collection) EksAttemptDetail.Builder podName(String podName)
The name of the pod for this job attempt.
podName - The name of the pod for this job attempt.EksAttemptDetail.Builder nodeName(String nodeName)
The name of the node for this job attempt.
nodeName - The name of the node for this job attempt.EksAttemptDetail.Builder startedAt(Long startedAt)
The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the
STARTING state to the RUNNING state).
startedAt - The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned
from the STARTING state to the RUNNING state).EksAttemptDetail.Builder stoppedAt(Long stoppedAt)
The Unix timestamp (in milliseconds) for when the attempt was stopped. This happens when the attempt
transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or
FAILED.
stoppedAt - The Unix timestamp (in milliseconds) for when the attempt was stopped. This happens when the attempt
transitioned from the RUNNING state to a terminal state, such as SUCCEEDED
or FAILED.EksAttemptDetail.Builder statusReason(String statusReason)
A short, human-readable string to provide additional details for the current status of the job attempt.
statusReason - A short, human-readable string to provide additional details for the current status of the job
attempt.Copyright © 2023. All rights reserved.