@Generated(value="software.amazon.awssdk:codegen") public final class Container extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Container.Builder,Container>
A Docker container that is part of a task.
| Modifier and Type | Class and Description |
|---|---|
static interface |
Container.Builder |
| Modifier and Type | Method and Description |
|---|---|
static Container.Builder |
builder() |
String |
containerArn()
The Amazon Resource Name (ARN) of the container.
|
String |
cpu()
The number of CPU units set for the container.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
Integer |
exitCode()
The exit code returned from the container.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
List<String> |
gpuIds()
The IDs of each GPU assigned to the container.
|
boolean |
hasGpuIds()
Returns true if the GpuIds property was specified by the sender (it may be empty), or false if the sender did not
specify the value (it will be empty).
|
int |
hashCode() |
boolean |
hasNetworkBindings()
Returns true if the NetworkBindings property was specified by the sender (it may be empty), or false if the
sender did not specify the value (it will be empty).
|
boolean |
hasNetworkInterfaces()
Returns true if the NetworkInterfaces property was specified by the sender (it may be empty), or false if the
sender did not specify the value (it will be empty).
|
HealthStatus |
healthStatus()
The health status of the container.
|
String |
healthStatusAsString()
The health status of the container.
|
String |
image()
The image used for the container.
|
String |
imageDigest()
The container image manifest digest.
|
String |
lastStatus()
The last known status of the container.
|
String |
memory()
The hard limit (in MiB) of memory set for the container.
|
String |
memoryReservation()
The soft limit (in MiB) of memory set for the container.
|
String |
name()
The name of the container.
|
List<NetworkBinding> |
networkBindings()
The network bindings associated with the container.
|
List<NetworkInterface> |
networkInterfaces()
The network interfaces associated with the container.
|
String |
reason()
A short (255 max characters) human-readable string to provide additional details about a running or stopped
container.
|
String |
runtimeId()
The ID of the Docker container.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends Container.Builder> |
serializableBuilderClass() |
String |
taskArn()
The ARN of the task.
|
Container.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic String containerArn()
The Amazon Resource Name (ARN) of the container.
public String taskArn()
The ARN of the task.
public String name()
The name of the container.
public String image()
The image used for the container.
public String imageDigest()
The container image manifest digest.
The imageDigest is only returned if the container is using an image hosted in Amazon ECR, otherwise
it is omitted.
The imageDigest is only returned if the container is using an image hosted in Amazon ECR,
otherwise it is omitted.
public String runtimeId()
The ID of the Docker container.
public String lastStatus()
The last known status of the container.
public Integer exitCode()
The exit code returned from the container.
public String reason()
A short (255 max characters) human-readable string to provide additional details about a running or stopped container.
public boolean hasNetworkBindings()
public List<NetworkBinding> networkBindings()
The network bindings associated with the container.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasNetworkBindings() to see if a value was sent in this field.
public boolean hasNetworkInterfaces()
public List<NetworkInterface> networkInterfaces()
The network interfaces associated with the container.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasNetworkInterfaces() to see if a value was sent in this field.
public HealthStatus healthStatus()
The health status of the container. If health checks are not configured for this container in its task
definition, then it reports the health status as UNKNOWN.
If the service returns an enum value that is not available in the current SDK version, healthStatus will
return HealthStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
healthStatusAsString().
UNKNOWN.HealthStatuspublic String healthStatusAsString()
The health status of the container. If health checks are not configured for this container in its task
definition, then it reports the health status as UNKNOWN.
If the service returns an enum value that is not available in the current SDK version, healthStatus will
return HealthStatus.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from
healthStatusAsString().
UNKNOWN.HealthStatuspublic String cpu()
The number of CPU units set for the container. The value will be 0 if no value was specified in the
container definition when the task definition was registered.
0 if no value was specified
in the container definition when the task definition was registered.public String memory()
The hard limit (in MiB) of memory set for the container.
public String memoryReservation()
The soft limit (in MiB) of memory set for the container.
public boolean hasGpuIds()
public List<String> gpuIds()
The IDs of each GPU assigned to the container.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasGpuIds() to see if a value was sent in this field.
public Container.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<Container.Builder,Container>public static Container.Builder builder()
public static Class<? extends Container.Builder> serializableBuilderClass()
public boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic String toString()
Copyright © 2020. All rights reserved.