/** *

The type and amount of a resource to assign to a container. The only supported resource is a GPU. For more information, see Working with GPUs on Amazon ECS in the Amazon Elastic Container Service Developer Guide

*/ export interface _ResourceRequirement { /** *

The number of physical GPUs the Amazon ECS container agent will reserve for the container. The number of GPUs reserved for all containers in a task should not exceed the number of available GPUs on the container instance the task is launched on.

*/ value: string; /** *

The type of resource to assign to a container. The only supported value is GPU.

*/ type: "GPU" | string; } export declare type _UnmarshalledResourceRequirement = _ResourceRequirement;