| Package | Description |
|---|---|
| com.amazonaws.services.ecs.model |
Classes modeling the various types represented by AmazonECS.
|
| Modifier and Type | Method and Description |
|---|---|
ContainerDefinition |
ContainerDefinition.clone() |
ContainerDefinition |
ContainerDefinition.withCommand(Collection<String> command)
The
CMD that is passed to the container. |
ContainerDefinition |
ContainerDefinition.withCommand(String... command)
The
CMD that is passed to the container. |
ContainerDefinition |
ContainerDefinition.withCpu(Integer cpu)
The number of
cpu units reserved for the container. |
ContainerDefinition |
ContainerDefinition.withEntryPoint(Collection<String> entryPoint)
|
ContainerDefinition |
ContainerDefinition.withEntryPoint(String... entryPoint)
|
ContainerDefinition |
ContainerDefinition.withEnvironment(Collection<KeyValuePair> environment)
The environment variables to pass to a container.
|
ContainerDefinition |
ContainerDefinition.withEnvironment(KeyValuePair... environment)
The environment variables to pass to a container.
|
ContainerDefinition |
ContainerDefinition.withEssential(Boolean essential)
If the
essential parameter of a container is marked as
true, the failure of that container will stop the task. |
ContainerDefinition |
ContainerDefinition.withImage(String image)
The image used to start a container.
|
ContainerDefinition |
ContainerDefinition.withLinks(Collection<String> links)
The
link parameter allows containers to communicate with
each other without the need for port mappings, using the
name parameter. |
ContainerDefinition |
ContainerDefinition.withLinks(String... links)
The
link parameter allows containers to communicate with
each other without the need for port mappings, using the
name parameter. |
ContainerDefinition |
ContainerDefinition.withMemory(Integer memory)
The number of MiB of memory reserved for the container.
|
ContainerDefinition |
ContainerDefinition.withMountPoints(Collection<MountPoint> mountPoints)
The mount points for data volumes in your container.
|
ContainerDefinition |
ContainerDefinition.withMountPoints(MountPoint... mountPoints)
The mount points for data volumes in your container.
|
ContainerDefinition |
ContainerDefinition.withName(String name)
The name of a container.
|
ContainerDefinition |
ContainerDefinition.withPortMappings(Collection<PortMapping> portMappings)
The list of port mappings for the container.
|
ContainerDefinition |
ContainerDefinition.withPortMappings(PortMapping... portMappings)
The list of port mappings for the container.
|
ContainerDefinition |
ContainerDefinition.withVolumesFrom(Collection<VolumeFrom> volumesFrom)
Data volumes to mount from another container.
|
ContainerDefinition |
ContainerDefinition.withVolumesFrom(VolumeFrom... volumesFrom)
Data volumes to mount from another container.
|
| Modifier and Type | Method and Description |
|---|---|
List<ContainerDefinition> |
RegisterTaskDefinitionRequest.getContainerDefinitions()
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
List<ContainerDefinition> |
TaskDefinition.getContainerDefinitions()
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
| Modifier and Type | Method and Description |
|---|---|
RegisterTaskDefinitionRequest |
RegisterTaskDefinitionRequest.withContainerDefinitions(ContainerDefinition... containerDefinitions)
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
TaskDefinition |
TaskDefinition.withContainerDefinitions(ContainerDefinition... containerDefinitions)
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RegisterTaskDefinitionRequest.setContainerDefinitions(Collection<ContainerDefinition> containerDefinitions)
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
void |
TaskDefinition.setContainerDefinitions(Collection<ContainerDefinition> containerDefinitions)
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
RegisterTaskDefinitionRequest |
RegisterTaskDefinitionRequest.withContainerDefinitions(Collection<ContainerDefinition> containerDefinitions)
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
TaskDefinition |
TaskDefinition.withContainerDefinitions(Collection<ContainerDefinition> containerDefinitions)
A list of container definitions in JSON format that describe the
different containers that make up your task.
|
Copyright © 2015. All rights reserved.