line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::CloudFormation::ResourceTargetDefinition; |
2
|
1
|
|
|
1
|
|
312
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
3
|
|
|
|
|
|
|
has Attribute => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has RequiresRecreation => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::CloudFormation::ResourceTargetDefinition |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 USAGE |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This class represents one of two things: |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
21
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::CloudFormation::ResourceTargetDefinition object: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Attribute => $value, ..., RequiresRecreation => $value }); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head3 Results returned from an API call |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::ResourceTargetDefinition object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
32
|
|
|
|
|
|
|
$result->Att1->Attribute |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The field that AWS CloudFormation will change, such as the name of a |
37
|
|
|
|
|
|
|
resource's property, and whether the resource will be recreated. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 Attribute => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Indicates which resource attribute is triggering this update, such as a |
45
|
|
|
|
|
|
|
change in the resource attribute's C<Metadata>, C<Properties>, or |
46
|
|
|
|
|
|
|
C<Tags>. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 Name => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
If the C<Attribute> value is C<Properties>, the name of the property. |
52
|
|
|
|
|
|
|
For all other attributes, the value is null. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 RequiresRecreation => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
If the C<Attribute> value is C<Properties>, indicates whether a change |
58
|
|
|
|
|
|
|
to this property causes the resource to be recreated. The value can be |
59
|
|
|
|
|
|
|
C<Never>, C<Always>, or C<Conditionally>. To determine the conditions |
60
|
|
|
|
|
|
|
for a C<Conditionally> recreation, see the update behavior for that |
61
|
|
|
|
|
|
|
property in the AWS CloudFormation User Guide. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head1 SEE ALSO |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation> |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
76
|
|
|
|
|
|
|
|