Package | Description |
---|---|
com.amazonaws.services.ecs.model |
Modifier and Type | Method and Description |
---|---|
ContainerOverride |
ContainerOverride.clone() |
ContainerOverride |
ContainerOverride.withCommand(Collection<String> command)
The command to send to the container that overrides the default command from the Docker image or the task
definition.
|
ContainerOverride |
ContainerOverride.withCommand(String... command)
The command to send to the container that overrides the default command from the Docker image or the task
definition.
|
ContainerOverride |
ContainerOverride.withCpu(Integer cpu)
The number of
cpu units reserved for the container, instead of the default value from the task
definition. |
ContainerOverride |
ContainerOverride.withEnvironment(Collection<KeyValuePair> environment)
The environment variables to send to the container.
|
ContainerOverride |
ContainerOverride.withEnvironment(KeyValuePair... environment)
The environment variables to send to the container.
|
ContainerOverride |
ContainerOverride.withMemory(Integer memory)
The hard limit (in MiB) of memory to present to the container, instead of the default value from the task
definition.
|
ContainerOverride |
ContainerOverride.withMemoryReservation(Integer memoryReservation)
The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the task
definition.
|
ContainerOverride |
ContainerOverride.withName(String name)
The name of the container that receives the override.
|
Modifier and Type | Method and Description |
---|---|
List<ContainerOverride> |
TaskOverride.getContainerOverrides()
One or more container overrides sent to a task.
|
Modifier and Type | Method and Description |
---|---|
TaskOverride |
TaskOverride.withContainerOverrides(ContainerOverride... containerOverrides)
One or more container overrides sent to a task.
|
Modifier and Type | Method and Description |
---|---|
void |
TaskOverride.setContainerOverrides(Collection<ContainerOverride> containerOverrides)
One or more container overrides sent to a task.
|
TaskOverride |
TaskOverride.withContainerOverrides(Collection<ContainerOverride> containerOverrides)
One or more container overrides sent to a task.
|
Copyright © 2018. All rights reserved.