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::Cluster; use Moose; has ActiveServicesCount => (is => 'ro', isa => 'Int', request_name => 'activeServicesCount', traits => ['NameInRequest']); has Attachments => (is => 'ro', isa => 'ArrayRef[Paws::ECS::Attachment]', request_name => 'attachments', traits => ['NameInRequest']); has AttachmentsStatus => (is => 'ro', isa => 'Str', request_name => 'attachmentsStatus', traits => ['NameInRequest']); has CapacityProviders => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'capacityProviders', traits => ['NameInRequest']); has ClusterArn => (is => 'ro', isa => 'Str', request_name => 'clusterArn', traits => ['NameInRequest']); has ClusterName => (is => 'ro', isa => 'Str', request_name => 'clusterName', traits => ['NameInRequest']); has Configuration => (is => 'ro', isa => 'Paws::ECS::ClusterConfiguration', request_name => 'configuration', traits => ['NameInRequest']); has DefaultCapacityProviderStrategy => (is => 'ro', isa => 'ArrayRef[Paws::ECS::CapacityProviderStrategyItem]', request_name => 'defaultCapacityProviderStrategy', traits => ['NameInRequest']); has PendingTasksCount => (is => 'ro', isa => 'Int', request_name => 'pendingTasksCount', traits => ['NameInRequest']); has RegisteredContainerInstancesCount => (is => 'ro', isa => 'Int', request_name => 'registeredContainerInstancesCount', traits => ['NameInRequest']); has RunningTasksCount => (is => 'ro', isa => 'Int', request_name => 'runningTasksCount', traits => ['NameInRequest']); has Settings => (is => 'ro', isa => 'ArrayRef[Paws::ECS::ClusterSetting]', request_name => 'settings', traits => ['NameInRequest']); has Statistics => (is => 'ro', isa => 'ArrayRef[Paws::ECS::KeyValuePair]', request_name => 'statistics', traits => ['NameInRequest']); has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::ECS::Tag]', request_name => 'tags', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::ECS::Cluster =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::Cluster object: $service_obj->Method(Att1 => { ActiveServicesCount => $value, ..., Tags => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::ECS::Cluster object: $result = $service_obj->Method(...); $result->Att1->ActiveServicesCount =head1 DESCRIPTION A regional grouping of one or more container instances on which you can run task requests. Each account receives a default cluster the first time you use the Amazon ECS service, but you may also create other clusters. Clusters may contain more than one instance type simultaneously. =head1 ATTRIBUTES =head2 ActiveServicesCount => Int The number of services that are running on the cluster in an C state. You can view these services with ListServices. =head2 Attachments => ArrayRef[L] The resources attached to a cluster. When using a capacity provider with a cluster, the Auto Scaling plan that is created will be returned as a cluster attachment. =head2 AttachmentsStatus => Str The status of the capacity providers associated with the cluster. The following are the states that will be returned: =over =item UPDATE_IN_PROGRESS The available capacity providers for the cluster are updating. This occurs when the Auto Scaling plan is provisioning or deprovisioning. =item UPDATE_COMPLETE The capacity providers have successfully updated. =item UPDATE_FAILED The capacity provider updates failed. =back =head2 CapacityProviders => ArrayRef[Str|Undef] The capacity providers associated with the cluster. =head2 ClusterArn => Str The Amazon Resource Name (ARN) that identifies the cluster. The ARN contains the C namespace, followed by the Region of the cluster, the AWS account ID of the cluster owner, the C namespace, and then the cluster name. For example, C. =head2 ClusterName => Str A user-generated string that you use to identify your cluster. =head2 Configuration => L The execute command configuration for the cluster. =head2 DefaultCapacityProviderStrategy => ArrayRef[L] The default capacity provider strategy for the cluster. When services or tasks are run in the cluster with no launch type or capacity provider strategy specified, the default capacity provider strategy is used. =head2 PendingTasksCount => Int The number of tasks in the cluster that are in the C state. =head2 RegisteredContainerInstancesCount => Int The number of container instances registered into the cluster. This includes container instances in both C and C status. =head2 RunningTasksCount => Int The number of tasks in the cluster that are in the C state. =head2 Settings => ArrayRef[L] The settings for the cluster. This parameter indicates whether CloudWatch Container Insights is enabled or disabled for a cluster. =head2 Statistics => ArrayRef[L] Additional information about your clusters that are separated by launch type, including: =over =item * runningEC2TasksCount =item * RunningFargateTasksCount =item * pendingEC2TasksCount =item * pendingFargateTasksCount =item * activeEC2ServiceCount =item * activeFargateServiceCount =item * drainingEC2ServiceCount =item * drainingFargateServiceCount =back =head2 Status => Str The status of the cluster. The following are the possible states that will be returned. =over =item ACTIVE The cluster is ready to accept tasks and if applicable you can register container instances with the cluster. =item PROVISIONING The cluster has capacity providers associated with it and the resources needed for the capacity provider are being created. =item DEPROVISIONING The cluster has capacity providers associated with it and the resources needed for the capacity provider are being deleted. =item FAILED The cluster has capacity providers associated with it and the resources needed for the capacity provider have failed to create. =item INACTIVE The cluster has been deleted. Clusters with an C status may remain discoverable in your account for a period of time. However, this behavior is subject to change in the future, so you should not rely on C clusters persisting. =back =head2 Tags => ArrayRef[L] The metadata that you apply to the cluster to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. The following basic restrictions apply to tags: =over =item * Maximum number of tags per resource - 50 =item * For each resource, each tag key must be unique, and each tag key can have only one value. =item * Maximum key length - 128 Unicode characters in UTF-8 =item * Maximum value length - 256 Unicode characters in UTF-8 =item * If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. =item * Tag keys and values are case-sensitive. =item * Do not use C, C, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit. =back =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