![]() |
![]()
| ![]() |
![]()
NAMEPaws::ECS::ResourceRequirement USAGEThis class represents one of two things: Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::ECS::ResourceRequirement object: $service_obj->Method(Att1 => { Type => $value, ..., Value => $value }); Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::ECS::ResourceRequirement object: $result = $service_obj->Method(...); $result->Att1->Type DESCRIPTIONThe type and amount of a resource to assign to a container. The supported resource types are GPUs and Elastic Inference accelerators. For more information, see Working with GPUs on Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html) or Working with Amazon Elastic Inference on Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-eia.html) in the Amazon Elastic Container Service Developer Guide ATTRIBUTESREQUIRED Type => StrThe type of resource to assign to a container. The supported values are "GPU" or "InferenceAccelerator". REQUIRED Value => StrThe value for the specified resource type. If the "GPU" type is used, the value is 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. If the "InferenceAccelerator" type is used, the "value" should match the "deviceName" for an InferenceAccelerator specified in a task definition. SEE ALSOThis class forms part of Paws, describing an object used in Paws::ECS BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|