Interface EcsContainerOverride.Builder

All Superinterfaces:
Buildable, CopyableBuilder<EcsContainerOverride.Builder,EcsContainerOverride>, SdkBuilder<EcsContainerOverride.Builder,EcsContainerOverride>, SdkPojo
Enclosing class:
EcsContainerOverride

public static interface EcsContainerOverride.Builder extends SdkPojo, CopyableBuilder<EcsContainerOverride.Builder,EcsContainerOverride>
  • Method Details

    • 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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • command

      EcsContainerOverride.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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • 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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • 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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • 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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • 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.

      This is a convenience method that creates an instance of the EcsEnvironmentVariable.Builder avoiding the need to create one manually via EcsEnvironmentVariable.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to environment(List<EcsEnvironmentVariable>).

      Parameters:
      environment - a consumer that will call methods on EcsEnvironmentVariable.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • environmentFiles

      EcsContainerOverride.Builder environmentFiles(Collection<EcsEnvironmentFile> environmentFiles)

      A list of files containing the environment variables to pass to a container, instead of the value from the container definition.

      Parameters:
      environmentFiles - A list of files containing the environment variables to pass to a container, instead of the value from the container definition.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • environmentFiles

      EcsContainerOverride.Builder environmentFiles(EcsEnvironmentFile... environmentFiles)

      A list of files containing the environment variables to pass to a container, instead of the value from the container definition.

      Parameters:
      environmentFiles - A list of files containing the environment variables to pass to a container, instead of the value from the container definition.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • environmentFiles

      EcsContainerOverride.Builder environmentFiles(Consumer<EcsEnvironmentFile.Builder>... environmentFiles)

      A list of files containing the environment variables to pass to a container, instead of the value from the container definition.

      This is a convenience method that creates an instance of the EcsEnvironmentFile.Builder avoiding the need to create one manually via EcsEnvironmentFile.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to environmentFiles(List<EcsEnvironmentFile>).

      Parameters:
      environmentFiles - a consumer that will call methods on EcsEnvironmentFile.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • 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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • memoryReservation

      EcsContainerOverride.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.

      Parameters:
      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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • name

      The name of the container that receives the override. This parameter is required if any override is specified.

      Parameters:
      name - The name of the container that receives the override. This parameter is required if any override is specified.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resourceRequirements

      EcsContainerOverride.Builder resourceRequirements(Collection<EcsResourceRequirement> resourceRequirements)

      The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU.

      Parameters:
      resourceRequirements - The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resourceRequirements

      EcsContainerOverride.Builder resourceRequirements(EcsResourceRequirement... resourceRequirements)

      The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU.

      Parameters:
      resourceRequirements - The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resourceRequirements

      EcsContainerOverride.Builder resourceRequirements(Consumer<EcsResourceRequirement.Builder>... resourceRequirements)

      The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU.

      This is a convenience method that creates an instance of the EcsResourceRequirement.Builder avoiding the need to create one manually via EcsResourceRequirement.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to resourceRequirements(List<EcsResourceRequirement>).

      Parameters:
      resourceRequirements - a consumer that will call methods on EcsResourceRequirement.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: