File Coverage

blib/lib/Paws/CloudFront/LambdaFunctionAssociations.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::CloudFront::LambdaFunctionAssociations;
2 1     1   650 use Moose;
  1         4  
  1         10  
3             has Items => (is => 'ro', isa => 'ArrayRef[Paws::CloudFront::LambdaFunctionAssociation]', request_name => 'LambdaFunctionAssociation', traits => ['NameInRequest']);
4             has Quantity => (is => 'ro', isa => 'Int', required => 1);
5             1;
6              
7             ### main pod documentation begin ###
8              
9             =head1 NAME
10              
11             Paws::CloudFront::LambdaFunctionAssociations
12              
13             =head1 USAGE
14              
15             This class represents one of two things:
16              
17             =head3 Arguments in a call to a service
18              
19             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
20             Each attribute should be used as a named argument in the calls that expect this type of object.
21              
22             As an example, if Att1 is expected to be a Paws::CloudFront::LambdaFunctionAssociations object:
23              
24             $service_obj->Method(Att1 => { Items => $value, ..., Quantity => $value });
25              
26             =head3 Results returned from an API call
27              
28             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFront::LambdaFunctionAssociations object:
29              
30             $result = $service_obj->Method(...);
31             $result->Att1->Items
32              
33             =head1 DESCRIPTION
34              
35             A complex type that specifies a list of Lambda functions associations
36             for a cache behavior.
37              
38             If you want to invoke one or more Lambda functions triggered by
39             requests that match the C<PathPattern> of the cache behavior, specify
40             the applicable values for C<Quantity> and C<Items>. Note that there can
41             be up to 4 C<LambdaFunctionAssociation> items in this list (one for
42             each possible value of C<EventType>) and each C<EventType> can be
43             associated with the Lambda function only once.
44              
45             If you don't want to invoke any Lambda functions for the requests that
46             match C<PathPattern>, specify C<0> for C<Quantity> and omit C<Items>.
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 Items => ArrayRef[L<Paws::CloudFront::LambdaFunctionAssociation>]
52              
53             B<Optional>: A complex type that contains C<LambdaFunctionAssociation>
54             items for this cache behavior. If C<Quantity> is C<0>, you can omit
55             C<Items>.
56              
57              
58             =head2 B<REQUIRED> Quantity => Int
59              
60             The number of Lambda function associations for this cache behavior.
61              
62              
63              
64             =head1 SEE ALSO
65              
66             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront>
67              
68             =head1 BUGS and CONTRIBUTIONS
69              
70             The source code is located here: https://github.com/pplu/aws-sdk-perl
71              
72             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
73              
74             =cut
75