File Coverage

blib/lib/Paws/Discovery/ConfigurationTag.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::Discovery::ConfigurationTag;
2 1     1   603 use Moose;
  1         2  
  1         9  
3             has ConfigurationId => (is => 'ro', isa => 'Str', request_name => 'configurationId', traits => ['NameInRequest']);
4             has ConfigurationType => (is => 'ro', isa => 'Str', request_name => 'configurationType', traits => ['NameInRequest']);
5             has Key => (is => 'ro', isa => 'Str', request_name => 'key', traits => ['NameInRequest']);
6             has TimeOfCreation => (is => 'ro', isa => 'Str', request_name => 'timeOfCreation', traits => ['NameInRequest']);
7             has Value => (is => 'ro', isa => 'Str', request_name => 'value', traits => ['NameInRequest']);
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Discovery::ConfigurationTag
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::Discovery::ConfigurationTag object:
26              
27             $service_obj->Method(Att1 => { ConfigurationId => $value, ..., Value => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::Discovery::ConfigurationTag object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->ConfigurationId
35              
36             =head1 DESCRIPTION
37              
38             Tags for a configuration item. Tags are metadata that help you
39             categorize IT assets.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 ConfigurationId => Str
45              
46             The configuration ID for the item to tag. You can specify a list of
47             keys and values.
48              
49              
50             =head2 ConfigurationType => Str
51              
52             A type of IT asset to tag.
53              
54              
55             =head2 Key => Str
56              
57             A type of tag on which to filter. For example, I<serverType>.
58              
59              
60             =head2 TimeOfCreation => Str
61              
62             The time the configuration tag was created in Coordinated Universal
63             Time (UTC).
64              
65              
66             =head2 Value => Str
67              
68             A value on which to filter. For example I<key = serverType> and I<value
69             = web server>.
70              
71              
72              
73             =head1 SEE ALSO
74              
75             This class forms part of L<Paws>, describing an object used in L<Paws::Discovery>
76              
77             =head1 BUGS and CONTRIBUTIONS
78              
79             The source code is located here: https://github.com/pplu/aws-sdk-perl
80              
81             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
82              
83             =cut
84