File Coverage

blib/lib/Paws/SSM/ParameterHistory.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::SSM::ParameterHistory;
2 1     1   1024 use Moose;
  1         4  
  1         19  
3             has AllowedPattern => (is => 'ro', isa => 'Str');
4             has Description => (is => 'ro', isa => 'Str');
5             has KeyId => (is => 'ro', isa => 'Str');
6             has LastModifiedDate => (is => 'ro', isa => 'Str');
7             has LastModifiedUser => (is => 'ro', isa => 'Str');
8             has Name => (is => 'ro', isa => 'Str');
9             has Type => (is => 'ro', isa => 'Str');
10             has Value => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::SSM::ParameterHistory
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::SSM::ParameterHistory object:
29              
30             $service_obj->Method(Att1 => { AllowedPattern => $value, ..., Value => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::ParameterHistory object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->AllowedPattern
38              
39             =head1 DESCRIPTION
40              
41             Information about parameter usage.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 AllowedPattern => Str
47              
48             Parameter names can include the following letters and symbols.
49              
50             a-zA-Z0-9_.-
51              
52              
53             =head2 Description => Str
54              
55             Information about the parameter.
56              
57              
58             =head2 KeyId => Str
59              
60             The ID of the query key used for this parameter.
61              
62              
63             =head2 LastModifiedDate => Str
64              
65             Date the parameter was last changed or updated.
66              
67              
68             =head2 LastModifiedUser => Str
69              
70             Amazon Resource Name (ARN) of the AWS user who last changed the
71             parameter.
72              
73              
74             =head2 Name => Str
75              
76             The name of the parameter.
77              
78              
79             =head2 Type => Str
80              
81             The type of parameter used.
82              
83              
84             =head2 Value => Str
85              
86             The parameter value.
87              
88              
89              
90             =head1 SEE ALSO
91              
92             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
93              
94             =head1 BUGS and CONTRIBUTIONS
95              
96             The source code is located here: https://github.com/pplu/aws-sdk-perl
97              
98             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
99              
100             =cut
101