File Coverage

blib/lib/Paws/ElasticBeanstalk/PlatformFilter.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::ElasticBeanstalk::PlatformFilter;
2 1     1   412 use Moose;
  1         3  
  1         8  
3             has Operator => (is => 'ro', isa => 'Str');
4             has Type => (is => 'ro', isa => 'Str');
5             has Values => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::ElasticBeanstalk::PlatformFilter
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::ElasticBeanstalk::PlatformFilter object:
24              
25             $service_obj->Method(Att1 => { Operator => $value, ..., Values => $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::ElasticBeanstalk::PlatformFilter object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->Operator
33              
34             =head1 DESCRIPTION
35              
36             Specify criteria to restrict the results when listing custom platforms.
37              
38             The filter is evaluated as the expression:
39              
40             C<Type> C<Operator> C<Values[i]>
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 Operator => Str
46              
47             The operator to apply to the C<Type> with each of the C<Values>.
48              
49             Valid Values: C<=> (equal to) | C<!=> (not equal to) | C<E<lt>> (less
50             than) | C<E<lt>=> (less than or equal to) | C<E<gt>> (greater than) |
51             C<E<gt>=> (greater than or equal to) | C<contains> | C<begins_with> |
52             C<ends_with>
53              
54              
55             =head2 Type => Str
56              
57             The custom platform attribute to which the filter values are applied.
58              
59             Valid Values: C<PlatformName> | C<PlatformVersion> | C<PlatformStatus>
60             | C<PlatformOwner>
61              
62              
63             =head2 Values => ArrayRef[Str|Undef]
64              
65             The list of values applied to the custom platform attribute.
66              
67              
68              
69             =head1 SEE ALSO
70              
71             This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk>
72              
73             =head1 BUGS and CONTRIBUTIONS
74              
75             The source code is located here: https://github.com/pplu/aws-sdk-perl
76              
77             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
78              
79             =cut
80