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::ECS::Container; use Moose; has ContainerArn => (is => 'ro', isa => 'Str', request_name => 'containerArn', traits => ['NameInRequest']); has Cpu => (is => 'ro', isa => 'Str', request_name => 'cpu', traits => ['NameInRequest']); has ExitCode => (is => 'ro', isa => 'Int', request_name => 'exitCode', traits => ['NameInRequest']); has GpuIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'gpuIds', traits => ['NameInRequest']); has HealthStatus => (is => 'ro', isa => 'Str', request_name => 'healthStatus', traits => ['NameInRequest']); has Image => (is => 'ro', isa => 'Str', request_name => 'image', traits => ['NameInRequest']); has ImageDigest => (is => 'ro', isa => 'Str', request_name => 'imageDigest', traits => ['NameInRequest']); has LastStatus => (is => 'ro', isa => 'Str', request_name => 'lastStatus', traits => ['NameInRequest']); has ManagedAgents => (is => 'ro', isa => 'ArrayRef[Paws::ECS::ManagedAgent]', request_name => 'managedAgents', traits => ['NameInRequest']); has Memory => (is => 'ro', isa => 'Str', request_name => 'memory', traits => ['NameInRequest']); has MemoryReservation => (is => 'ro', isa => 'Str', request_name => 'memoryReservation', traits => ['NameInRequest']); has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest']); has NetworkBindings => (is => 'ro', isa => 'ArrayRef[Paws::ECS::NetworkBinding]', request_name => 'networkBindings', traits => ['NameInRequest']); has NetworkInterfaces => (is => 'ro', isa => 'ArrayRef[Paws::ECS::NetworkInterface]', request_name => 'networkInterfaces', traits => ['NameInRequest']); has Reason => (is => 'ro', isa => 'Str', request_name => 'reason', traits => ['NameInRequest']); has RuntimeId => (is => 'ro', isa => 'Str', request_name => 'runtimeId', traits => ['NameInRequest']); has TaskArn => (is => 'ro', isa => 'Str', request_name => 'taskArn', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::ECS::Container =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::ECS::Container object: $service_obj->Method(Att1 => { ContainerArn => $value, ..., TaskArn => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::ECS::Container object: $result = $service_obj->Method(...); $result->Att1->ContainerArn =head1 DESCRIPTION A Docker container that is part of a task. =head1 ATTRIBUTES =head2 ContainerArn => Str The Amazon Resource Name (ARN) of the container. =head2 Cpu => Str The number of CPU units set for the container. The value will be C<0> if no value was specified in the container definition when the task definition was registered. =head2 ExitCode => Int The exit code returned from the container. =head2 GpuIds => ArrayRef[Str|Undef] The IDs of each GPU assigned to the container. =head2 HealthStatus => Str The health status of the container. If health checks are not configured for this container in its task definition, then it reports the health status as C. =head2 Image => Str The image used for the container. =head2 ImageDigest => Str The container image manifest digest. The C is only returned if the container is using an image hosted in Amazon ECR, otherwise it is omitted. =head2 LastStatus => Str The last known status of the container. =head2 ManagedAgents => ArrayRef[L] The details of any Amazon ECS managed agents associated with the container. =head2 Memory => Str The hard limit (in MiB) of memory set for the container. =head2 MemoryReservation => Str The soft limit (in MiB) of memory set for the container. =head2 Name => Str The name of the container. =head2 NetworkBindings => ArrayRef[L] The network bindings associated with the container. =head2 NetworkInterfaces => ArrayRef[L] The network interfaces associated with the container. =head2 Reason => Str A short (255 max characters) human-readable string to provide additional details about a running or stopped container. =head2 RuntimeId => Str The ID of the Docker container. =head2 TaskArn => Str The ARN of the task. =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