CopyableBuilder<ContainerOverride.Builder,ContainerOverride>
, SdkBuilder<ContainerOverride.Builder,ContainerOverride>
public static interface ContainerOverride.Builder extends CopyableBuilder<ContainerOverride.Builder,ContainerOverride>
Modifier and Type | Method | Description |
---|---|---|
ContainerOverride.Builder |
command(String... command) |
The command to send to the container that overrides the default command from the Docker image or the task
definition.
|
ContainerOverride.Builder |
command(Collection<String> command) |
The command to send to the container that overrides the default command from the Docker image or the task
definition.
|
ContainerOverride.Builder |
cpu(Integer cpu) |
The number of
cpu units reserved for the container, instead of the default value from the task
definition. |
ContainerOverride.Builder |
environment(Collection<KeyValuePair> environment) |
The environment variables to send to the container.
|
ContainerOverride.Builder |
environment(KeyValuePair... environment) |
The environment variables to send to the container.
|
ContainerOverride.Builder |
memory(Integer memory) |
The hard limit (in MiB) of memory to present to the container, instead of the default value from the task
definition.
|
ContainerOverride.Builder |
memoryReservation(Integer memoryReservation) |
The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the task
definition.
|
ContainerOverride.Builder |
name(String name) |
The name of the container that receives the override.
|
copy
apply, build
ContainerOverride.Builder name(String name)
The name of the container that receives the override. This parameter is required if any override is specified.
name
- The name of the container that receives the override. This parameter is required if any override is
specified.ContainerOverride.Builder command(Collection<String> command)
The command to send to the container that overrides the default command from the Docker image or the task definition. You must also specify a container name.
command
- The command to send to the container that overrides the default command from the Docker image or the
task definition. You must also specify a container name.ContainerOverride.Builder command(String... command)
The command to send to the container that overrides the default command from the Docker image or the task definition. You must also specify a container name.
NOTE: This method appends the values to the existing list (if any). Use
#setCommand(java.util.Collection)
or #withCommand(java.util.Collection)
if you want to
override the existing values.
command
- The command to send to the container that overrides the default command from the Docker image or the
task definition. You must also specify a container name.ContainerOverride.Builder environment(Collection<KeyValuePair> environment)
The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition. You must also specify a container name.
environment
- The environment variables to send to the container. You can add new environment variables, which are
added to the container at launch, or you can override the existing environment variables from the
Docker image or the task definition. You must also specify a container name.ContainerOverride.Builder environment(KeyValuePair... environment)
The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition. You must also specify a container name.
NOTE: This method appends the values to the existing list (if any). Use
#setEnvironment(java.util.Collection)
or #withEnvironment(java.util.Collection)
if you want
to override the existing values.
environment
- The environment variables to send to the container. You can add new environment variables, which are
added to the container at launch, or you can override the existing environment variables from the
Docker image or the task definition. You must also specify a container name.ContainerOverride.Builder cpu(Integer cpu)
The number of cpu
units reserved for the container, instead of the default value from the task
definition. You must also specify a container name.
cpu
- The number of cpu
units reserved for the container, instead of the default value from the
task definition. You must also specify a container name.ContainerOverride.Builder memory(Integer memory)
The hard limit (in MiB) of memory to present to the container, instead of the default value from the task definition. If your container attempts to exceed the memory specified here, the container is killed. You must also specify a container name.
memory
- The hard limit (in MiB) of memory to present to the container, instead of the default value from the
task definition. If your container attempts to exceed the memory specified here, the container is
killed. You must also specify a container name.ContainerOverride.Builder memoryReservation(Integer memoryReservation)
The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the task definition. You must also specify a container name.
memoryReservation
- The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the
task definition. You must also specify a container name.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.