File Coverage

blib/lib/Paws/Inspector/ResourceGroup.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::Inspector::ResourceGroup;
2 1     1   635 use Moose;
  1         3  
  1         10  
3             has Arn => (is => 'ro', isa => 'Str', request_name => 'arn', traits => ['NameInRequest'], required => 1);
4             has CreatedAt => (is => 'ro', isa => 'Str', request_name => 'createdAt', traits => ['NameInRequest'], required => 1);
5             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::Inspector::ResourceGroupTag]', request_name => 'tags', traits => ['NameInRequest'], required => 1);
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::Inspector::ResourceGroup
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::Inspector::ResourceGroup object:
24              
25             $service_obj->Method(Att1 => { Arn => $value, ..., Tags => $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::Inspector::ResourceGroup object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->Arn
33              
34             =head1 DESCRIPTION
35              
36             Contains information about a resource group. The resource group defines
37             a set of tags that, when queried, identify the AWS resources that make
38             up the assessment target. This data type is used as the response
39             element in the DescribeResourceGroups action.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 B<REQUIRED> Arn => Str
45              
46             The ARN of the resource group.
47              
48              
49             =head2 B<REQUIRED> CreatedAt => Str
50              
51             The time at which resource group is created.
52              
53              
54             =head2 B<REQUIRED> Tags => ArrayRef[L<Paws::Inspector::ResourceGroupTag>]
55              
56             The tags (key and value pairs) of the resource group. This data type
57             property is used in the CreateResourceGroup action.
58              
59              
60              
61             =head1 SEE ALSO
62              
63             This class forms part of L<Paws>, describing an object used in L<Paws::Inspector>
64              
65             =head1 BUGS and CONTRIBUTIONS
66              
67             The source code is located here: https://github.com/pplu/aws-sdk-perl
68              
69             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
70              
71             =cut
72