File Coverage

blib/lib/Paws/Inspector/FindingFilter.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::FindingFilter;
2 1     1   679 use Moose;
  1         4  
  1         10  
3             has AgentIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'agentIds', traits => ['NameInRequest']);
4             has Attributes => (is => 'ro', isa => 'ArrayRef[Paws::Inspector::Attribute]', request_name => 'attributes', traits => ['NameInRequest']);
5             has AutoScalingGroups => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'autoScalingGroups', traits => ['NameInRequest']);
6             has CreationTimeRange => (is => 'ro', isa => 'Paws::Inspector::TimestampRange', request_name => 'creationTimeRange', traits => ['NameInRequest']);
7             has RuleNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'ruleNames', traits => ['NameInRequest']);
8             has RulesPackageArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'rulesPackageArns', traits => ['NameInRequest']);
9             has Severities => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'severities', traits => ['NameInRequest']);
10             has UserAttributes => (is => 'ro', isa => 'ArrayRef[Paws::Inspector::Attribute]', request_name => 'userAttributes', traits => ['NameInRequest']);
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::Inspector::FindingFilter
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::Inspector::FindingFilter object:
29              
30             $service_obj->Method(Att1 => { AgentIds => $value, ..., UserAttributes => $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::Inspector::FindingFilter object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->AgentIds
38              
39             =head1 DESCRIPTION
40              
41             This data type is used as a request parameter in the ListFindings
42             action.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 AgentIds => ArrayRef[Str|Undef]
48              
49             For a record to match a filter, one of the values that is specified for
50             this data type property must be the exact match of the value of the
51             B<agentId> property of the Finding data type.
52              
53              
54             =head2 Attributes => ArrayRef[L<Paws::Inspector::Attribute>]
55              
56             For a record to match a filter, the list of values that are specified
57             for this data type property must be contained in the list of values of
58             the B<attributes> property of the Finding data type.
59              
60              
61             =head2 AutoScalingGroups => ArrayRef[Str|Undef]
62              
63             For a record to match a filter, one of the values that is specified for
64             this data type property must be the exact match of the value of the
65             B<autoScalingGroup> property of the Finding data type.
66              
67              
68             =head2 CreationTimeRange => L<Paws::Inspector::TimestampRange>
69              
70             The time range during which the finding is generated.
71              
72              
73             =head2 RuleNames => ArrayRef[Str|Undef]
74              
75             For a record to match a filter, one of the values that is specified for
76             this data type property must be the exact match of the value of the
77             B<ruleName> property of the Finding data type.
78              
79              
80             =head2 RulesPackageArns => ArrayRef[Str|Undef]
81              
82             For a record to match a filter, one of the values that is specified for
83             this data type property must be the exact match of the value of the
84             B<rulesPackageArn> property of the Finding data type.
85              
86              
87             =head2 Severities => ArrayRef[Str|Undef]
88              
89             For a record to match a filter, one of the values that is specified for
90             this data type property must be the exact match of the value of the
91             B<severity> property of the Finding data type.
92              
93              
94             =head2 UserAttributes => ArrayRef[L<Paws::Inspector::Attribute>]
95              
96             For a record to match a filter, the value that is specified for this
97             data type property must be contained in the list of values of the
98             B<userAttributes> property of the Finding data type.
99              
100              
101              
102             =head1 SEE ALSO
103              
104             This class forms part of L<Paws>, describing an object used in L<Paws::Inspector>
105              
106             =head1 BUGS and CONTRIBUTIONS
107              
108             The source code is located here: https://github.com/pplu/aws-sdk-perl
109              
110             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
111              
112             =cut
113