package Paws::ECS::ListServices { use Moose; has cluster => (is => 'ro', isa => 'Str'); has maxResults => (is => 'ro', isa => 'Int'); has nextToken => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListServices'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ECS::ListServicesResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); } 1; ### main pod documentation begin ### =head1 NAME Paws::ECS::ListServices - Arguments for method ListServices on Paws::ECS =head1 DESCRIPTION This class represents the parameters used for calling the method ListServices on the Amazon EC2 Container Service service. Use the attributes of this class as arguments to method ListServices. You shouln't make instances of this class. Each attribute should be used as a named argument in the call to ListServices. As an example: $service_obj->ListServices(Att1 => $value1, Att2 => $value2, ...); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. =head1 ATTRIBUTES =head2 cluster => Str The short name or full Amazon Resource Name (ARN) of the cluster that hosts the services you want to list. If you do not specify a cluster, the default cluster is assumed.. =head2 maxResults => Int The maximum number of container instance results returned by C in paginated output. When this parameter is used, C only returns C results in a single page along with a C response element. The remaining results of the initial request can be seen by sending another C request with the returned C value. This value can be between 1 and 100. If this parameter is not used, then C returns up to 100 results and a C value if applicable. =head2 nextToken => Str The C value returned from a previous paginated C request where C was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the C value. This value is C when there are no more results to return. =head1 SEE ALSO This class forms part of L, documenting arguments for method ListServices in L =head1 BUGS and CONTRIBUTIONS The source code is located here: https://github.com/pplu/aws-sdk-perl Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues =cut