Skip to main content

AWSECSContainerOverride

No description

type AWSECSContainerOverride {
command: [String!]!
cpu: Int!
environment: [AWSECSEnvironmentVariable!]!
environmentFiles: [AWSECSEnvironmentFile!]!
memory: Int!
memoryReservation: Int!
name: String!
resourceRequirements: [AWSECSResourceRequirement!]!
}

Fields

AWSECSContainerOverride.command ● [String!]! non-null scalar

The command to send to the container that overrides the default command from the Docker image or the task definition

AWSECSContainerOverride.cpu ● Int! non-null scalar

The number of cpu units reserved for the container, instead of the default value from the task definition

AWSECSContainerOverride.environment ● [AWSECSEnvironmentVariable!]! non-null object

The environment variables to send to the container

AWSECSContainerOverride.environmentFiles ● [AWSECSEnvironmentFile!]! non-null object

The files containing the environment variables to send to the container, instead of the value from the container definition

AWSECSContainerOverride.memory ● Int! non-null scalar

The hard limit (in MiB) of memory to present to the container, instead of the default value from the task definition

AWSECSContainerOverride.memoryReservation ● Int! non-null scalar

The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the task definition

AWSECSContainerOverride.name ● String! non-null scalar

The name of the container that receives the override

AWSECSContainerOverride.resourceRequirements ● [AWSECSResourceRequirement!]! non-null object

The type and amount of a resource to assign to a container, instead of the default value from the task definition

Member of

AWSECSTaskOverride object