File Coverage

blib/lib/Paws/CloudFormation/CreateStackInstances.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::CreateStackInstances;
3 1     1   276 use Moose;
  1         2  
  1         5  
4             has Accounts => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1);
5             has OperationId => (is => 'ro', isa => 'Str');
6             has OperationPreferences => (is => 'ro', isa => 'Paws::CloudFormation::StackSetOperationPreferences');
7             has Regions => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1);
8             has StackSetName => (is => 'ro', isa => 'Str', required => 1);
9              
10 1     1   5313 use MooseX::ClassAttribute;
  1         3  
  1         7  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateStackInstances');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudFormation::CreateStackInstancesOutput');
14             class_has _result_key => (isa => 'Str', is => 'ro', default => 'CreateStackInstancesResult');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::CloudFormation::CreateStackInstances - Arguments for method CreateStackInstances on Paws::CloudFormation
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method CreateStackInstances on the
26             AWS CloudFormation service. Use the attributes of this class
27             as arguments to method CreateStackInstances.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateStackInstances.
30              
31             As an example:
32              
33             $service_obj->CreateStackInstances(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 B<REQUIRED> Accounts => ArrayRef[Str|Undef]
41              
42             The names of one or more AWS accounts that you want to create stack
43             instances in the specified region(s) for.
44              
45              
46              
47             =head2 OperationId => Str
48              
49             The unique identifier for this stack set operation.
50              
51             The operation ID also functions as an idempotency token, to ensure that
52             AWS CloudFormation performs the stack set operation only once, even if
53             you retry the request multiple times. You might retry stack set
54             operation requests to ensure that AWS CloudFormation successfully
55             received them.
56              
57             If you don't specify an operation ID, the SDK generates one
58             automatically.
59              
60             Repeating this stack set operation with a new operation ID retries all
61             stack instances whose status is C<OUTDATED>.
62              
63              
64              
65             =head2 OperationPreferences => L<Paws::CloudFormation::StackSetOperationPreferences>
66              
67             Preferences for how AWS CloudFormation performs this stack set
68             operation.
69              
70              
71              
72             =head2 B<REQUIRED> Regions => ArrayRef[Str|Undef]
73              
74             The names of one or more regions where you want to create stack
75             instances using the specified AWS account(s).
76              
77              
78              
79             =head2 B<REQUIRED> StackSetName => Str
80              
81             The name or unique ID of the stack set that you want to create stack
82             instances from.
83              
84              
85              
86              
87             =head1 SEE ALSO
88              
89             This class forms part of L<Paws>, documenting arguments for method CreateStackInstances in L<Paws::CloudFormation>
90              
91             =head1 BUGS and CONTRIBUTIONS
92              
93             The source code is located here: https://github.com/pplu/aws-sdk-perl
94              
95             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
96              
97             =cut
98