PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::Batch::JobQueueDetail; use Moose; has ComputeEnvironmentOrder => (is => 'ro', isa => 'ArrayRef[Paws::Batch::ComputeEnvironmentOrder]', request_name => 'computeEnvironmentOrder', traits => ['NameInRequest'], required => 1); has JobQueueArn => (is => 'ro', isa => 'Str', request_name => 'jobQueueArn', traits => ['NameInRequest'], required => 1); has JobQueueName => (is => 'ro', isa => 'Str', request_name => 'jobQueueName', traits => ['NameInRequest'], required => 1); has Priority => (is => 'ro', isa => 'Int', request_name => 'priority', traits => ['NameInRequest'], required => 1); has State => (is => 'ro', isa => 'Str', request_name => 'state', traits => ['NameInRequest'], required => 1); has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']); has StatusReason => (is => 'ro', isa => 'Str', request_name => 'statusReason', traits => ['NameInRequest']); has Tags => (is => 'ro', isa => 'Paws::Batch::TagrisTagsMap', request_name => 'tags', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::Batch::JobQueueDetail =head1 USAGE This class represents one of two things: =head3 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::Batch::JobQueueDetail object: $service_obj->Method(Att1 => { ComputeEnvironmentOrder => $value, ..., Tags => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Batch::JobQueueDetail object: $result = $service_obj->Method(...); $result->Att1->ComputeEnvironmentOrder =head1 DESCRIPTION An object representing the details of an AWS Batch job queue. =head1 ATTRIBUTES =head2 B ComputeEnvironmentOrder => ArrayRef[L] The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order. =head2 B JobQueueArn => Str The Amazon Resource Name (ARN) of the job queue. =head2 B JobQueueName => Str The name of the job queue. =head2 B Priority => Int The priority of the job queue. Job queues with a higher priority (or a higher integer value for the C parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order, for example, a job queue with a priority value of C<10> is given scheduling preference over a job queue with a priority value of C<1>. All of the compute environments must be either EC2 (C or C) or Fargate (C or C); EC2 and Fargate compute environments can't be mixed. =head2 B State => Str Describes the ability of the queue to accept new jobs. If the job queue state is C, it's able to accept jobs. If the job queue state is C, new jobs can't be added to the queue, but jobs already in the queue can finish. =head2 Status => Str The status of the job queue (for example, C or C). =head2 StatusReason => Str A short, human-readable string to provide additional details about the current status of the job queue. =head2 Tags => L The tags applied to the job queue. For more information, see Tagging your AWS Batch resources (https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html) in I. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut