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.withEnvironmentFiles(Collection<EnvironmentFile> environmentFiles)
A list of files containing the environment variables to pass to a container, instead of the value from the
container definition.
|
ContainerOverride |
ContainerOverride.withEnvironmentFiles(EnvironmentFile... environmentFiles)
A list of files containing the environment variables to pass to a container, instead of the value from the
container definition.
|
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.
|
ContainerOverride |
ContainerOverride.withResourceRequirements(Collection<ResourceRequirement> resourceRequirements)
The type and amount of a resource to assign to a container, instead of the default value from the task
definition.
|
ContainerOverride |
ContainerOverride.withResourceRequirements(ResourceRequirement... resourceRequirements)
The type and amount of a resource to assign to a container, instead of the default value from the task
definition.
|
Modifier and Type | Method and Description |
---|---|
List<ContainerOverride> |
TaskOverride.getContainerOverrides()
One or more container overrides that are sent to a task.
|
Modifier and Type | Method and Description |
---|---|
TaskOverride |
TaskOverride.withContainerOverrides(ContainerOverride... containerOverrides)
One or more container overrides that are sent to a task.
|
Modifier and Type | Method and Description |
---|---|
void |
TaskOverride.setContainerOverrides(Collection<ContainerOverride> containerOverrides)
One or more container overrides that are sent to a task.
|
TaskOverride |
TaskOverride.withContainerOverrides(Collection<ContainerOverride> containerOverrides)
One or more container overrides that are sent to a task.
|
Copyright © 2021. All rights reserved.