line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Inspector::AssessmentTemplateFilter; |
2
|
1
|
|
|
1
|
|
599
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
12
|
|
3
|
|
|
|
|
|
|
has DurationRange => (is => 'ro', isa => 'Paws::Inspector::DurationRange', request_name => 'durationRange', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has NamePattern => (is => 'ro', isa => 'Str', request_name => 'namePattern', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has RulesPackageArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'rulesPackageArns', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::Inspector::AssessmentTemplateFilter |
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::AssessmentTemplateFilter object: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { DurationRange => $value, ..., RulesPackageArns => $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::AssessmentTemplateFilter object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
32
|
|
|
|
|
|
|
$result->Att1->DurationRange |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Used as the request parameter in the ListAssessmentTemplates action. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 DurationRange => L<Paws::Inspector::DurationRange> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
For a record to match a filter, the value specified for this data type |
44
|
|
|
|
|
|
|
property must inclusively match any value between the specified minimum |
45
|
|
|
|
|
|
|
and maximum values of the B<durationInSeconds> property of the |
46
|
|
|
|
|
|
|
AssessmentTemplate data type. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 NamePattern => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
For a record to match a filter, an explicit value or a string that |
52
|
|
|
|
|
|
|
contains a wildcard that is specified for this data type property must |
53
|
|
|
|
|
|
|
match the value of the B<assessmentTemplateName> property of the |
54
|
|
|
|
|
|
|
AssessmentTemplate data type. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 RulesPackageArns => ArrayRef[Str|Undef] |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
For a record to match a filter, the values that are specified for this |
60
|
|
|
|
|
|
|
data type property must be contained in the list of values of the |
61
|
|
|
|
|
|
|
B<rulesPackageArns> property of the AssessmentTemplate data type. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head1 SEE ALSO |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Inspector> |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
76
|
|
|
|
|
|
|
|