File Coverage

blib/lib/Paws/SSM/ParameterMetadata.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::ParameterMetadata;
2 1     1   884 use Moose;
  1         3  
  1         7  
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             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::SSM::ParameterMetadata
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::SSM::ParameterMetadata object:
28              
29             $service_obj->Method(Att1 => { AllowedPattern => $value, ..., Type => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::ParameterMetadata object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->AllowedPattern
37              
38             =head1 DESCRIPTION
39              
40             Metada includes information like the ARN of the last user and the
41             date/time the parameter was last used.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 AllowedPattern => Str
47              
48             A parameter name can include only the following letters and symbols.
49              
50             a-zA-Z0-9_.-
51              
52              
53             =head2 Description => Str
54              
55             Description of the parameter actions.
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 parameter name.
77              
78              
79             =head2 Type => Str
80              
81             The type of parameter. Valid parameter types include the following:
82             String, String list, Secure string.
83              
84              
85              
86             =head1 SEE ALSO
87              
88             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
89              
90             =head1 BUGS and CONTRIBUTIONS
91              
92             The source code is located here: https://github.com/pplu/aws-sdk-perl
93              
94             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
95              
96             =cut
97