File Coverage

blib/lib/Paws/CloudFormation/ListStackInstances.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::CloudFormation::ListStackInstances;
3 1     1   370 use Moose;
  1         3  
  1         5  
4             has MaxResults => (is => 'ro', isa => 'Int');
5             has NextToken => (is => 'ro', isa => 'Str');
6             has StackInstanceAccount => (is => 'ro', isa => 'Str');
7             has StackInstanceRegion => (is => 'ro', isa => 'Str');
8             has StackSetName => (is => 'ro', isa => 'Str', required => 1);
9              
10 1     1   5573 use MooseX::ClassAttribute;
  1         2  
  1         7  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListStackInstances');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudFormation::ListStackInstancesOutput');
14             class_has _result_key => (isa => 'Str', is => 'ro', default => 'ListStackInstancesResult');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::CloudFormation::ListStackInstances - Arguments for method ListStackInstances on Paws::CloudFormation
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method ListStackInstances on the
26             AWS CloudFormation service. Use the attributes of this class
27             as arguments to method ListStackInstances.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListStackInstances.
30              
31             As an example:
32              
33             $service_obj->ListStackInstances(Att1 => $value1, Att2 => $value2, ...);
34              
35             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.
36              
37             =head1 ATTRIBUTES
38              
39              
40             =head2 MaxResults => Int
41              
42             The maximum number of results to be returned with a single call. If the
43             number of available results exceeds this maximum, the response includes
44             a C<NextToken> value that you can assign to the C<NextToken> request
45             parameter to get the next set of results.
46              
47              
48              
49             =head2 NextToken => Str
50              
51             If the previous request didn't return all of the remaining results, the
52             response's C<NextToken> parameter value is set to a token. To retrieve
53             the next set of results, call C<ListStackInstances> again and assign
54             that token to the request object's C<NextToken> parameter. If there are
55             no remaining results, the previous response object's C<NextToken>
56             parameter is set to C<null>.
57              
58              
59              
60             =head2 StackInstanceAccount => Str
61              
62             The name of the AWS account that you want to list stack instances for.
63              
64              
65              
66             =head2 StackInstanceRegion => Str
67              
68             The name of the region where you want to list stack instances.
69              
70              
71              
72             =head2 B<REQUIRED> StackSetName => Str
73              
74             The name or unique ID of the stack set that you want to list stack
75             instances for.
76              
77              
78              
79              
80             =head1 SEE ALSO
81              
82             This class forms part of L<Paws>, documenting arguments for method ListStackInstances in L<Paws::CloudFormation>
83              
84             =head1 BUGS and CONTRIBUTIONS
85              
86             The source code is located here: https://github.com/pplu/aws-sdk-perl
87              
88             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
89              
90             =cut
91