static ContainerDefinition.Builder |
ContainerDefinition.builder() |
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.command(String... command) |
A command that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.command(Collection<String> command) |
A command that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.containerName(String containerName) |
The container definition identifier.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.cpu(Integer cpu) |
The number of CPU units that are reserved for the container.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.dependsOn(Collection<ContainerDependency> dependsOn) |
Indicates that the container relies on the status of other containers in the same container group during its
startup and shutdown sequences.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.dependsOn(Consumer<ContainerDependency.Builder>... dependsOn) |
Indicates that the container relies on the status of other containers in the same container group during its
startup and shutdown sequences.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.dependsOn(ContainerDependency... dependsOn) |
Indicates that the container relies on the status of other containers in the same container group during its
startup and shutdown sequences.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.entryPoint(String... entryPoint) |
The entry point that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.entryPoint(Collection<String> entryPoint) |
The entry point that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.environment(Collection<ContainerEnvironment> environment) |
A set of environment variables that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.environment(Consumer<ContainerEnvironment.Builder>... environment) |
A set of environment variables that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.environment(ContainerEnvironment... environment) |
A set of environment variables that's passed to the container on startup.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.essential(Boolean essential) |
Indicates whether the container is vital to the container group.
|
default ContainerDefinition.Builder |
ContainerDefinition.Builder.healthCheck(Consumer<ContainerHealthCheck.Builder> healthCheck) |
A configuration for a non-terminal health check.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.healthCheck(ContainerHealthCheck healthCheck) |
A configuration for a non-terminal health check.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.imageUri(String imageUri) |
The URI to the image that $short; copied and deployed to a container fleet.
|
default ContainerDefinition.Builder |
ContainerDefinition.Builder.memoryLimits(Consumer<ContainerMemoryLimits.Builder> memoryLimits) |
The amount of memory that Amazon GameLift makes available to the container.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.memoryLimits(ContainerMemoryLimits memoryLimits) |
The amount of memory that Amazon GameLift makes available to the container.
|
default ContainerDefinition.Builder |
ContainerDefinition.Builder.portConfiguration(Consumer<ContainerPortConfiguration.Builder> portConfiguration) |
Defines the ports that are available to assign to processes in the container.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.portConfiguration(ContainerPortConfiguration portConfiguration) |
Defines the ports that are available to assign to processes in the container.
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.resolvedImageDigest(String resolvedImageDigest) |
A unique and immutable identifier for the container image that is deployed to a container fleet.
|
ContainerDefinition.Builder |
ContainerDefinition.toBuilder() |
|
ContainerDefinition.Builder |
ContainerDefinition.Builder.workingDirectory(String workingDirectory) |
The directory in the container where commands are run.
|