File Coverage

blib/lib/Paws/OpsWorks/DescribeEcsClusters.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::OpsWorks::DescribeEcsClusters;
3 1     1   670 use Moose;
  1         4  
  1         8  
4             has EcsClusterArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             has MaxResults => (is => 'ro', isa => 'Int');
6             has NextToken => (is => 'ro', isa => 'Str');
7             has StackId => (is => 'ro', isa => 'Str');
8              
9 1     1   7155 use MooseX::ClassAttribute;
  1         3  
  1         11  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeEcsClusters');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::OpsWorks::DescribeEcsClustersResult');
13             class_has _result_key => (isa => 'Str', is => 'ro');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::OpsWorks::DescribeEcsClusters - Arguments for method DescribeEcsClusters on Paws::OpsWorks
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method DescribeEcsClusters on the
25             AWS OpsWorks service. Use the attributes of this class
26             as arguments to method DescribeEcsClusters.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeEcsClusters.
29              
30             As an example:
31              
32             $service_obj->DescribeEcsClusters(Att1 => $value1, Att2 => $value2, ...);
33              
34             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.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 EcsClusterArns => ArrayRef[Str|Undef]
40              
41             A list of ARNs, one for each cluster to be described.
42              
43              
44              
45             =head2 MaxResults => Int
46              
47             To receive a paginated response, use this parameter to specify the
48             maximum number of results to be returned with a single call. If the
49             number of available results exceeds this maximum, the response includes
50             a C<NextToken> value that you can assign to the C<NextToken> request
51             parameter to get the next set of results.
52              
53              
54              
55             =head2 NextToken => Str
56              
57             If the previous paginated request did not return all of the remaining
58             results, the response object'sC<NextToken> parameter value is set to a
59             token. To retrieve the next set of results, call C<DescribeEcsClusters>
60             again and assign that token to the request object's C<NextToken>
61             parameter. If there are no remaining results, the previous response
62             object's C<NextToken> parameter is set to C<null>.
63              
64              
65              
66             =head2 StackId => Str
67              
68             A stack ID. C<DescribeEcsClusters> returns a description of the cluster
69             that is registered with the stack.
70              
71              
72              
73              
74             =head1 SEE ALSO
75              
76             This class forms part of L<Paws>, documenting arguments for method DescribeEcsClusters in L<Paws::OpsWorks>
77              
78             =head1 BUGS and CONTRIBUTIONS
79              
80             The source code is located here: https://github.com/pplu/aws-sdk-perl
81              
82             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83              
84             =cut
85