File Coverage

blib/lib/Paws/CloudFront/CachedMethods.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::CachedMethods;
2 1     1   705 use Moose;
  1         3  
  1         10  
3             has Items => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'Method', traits => ['NameInRequest'], required => 1);
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::CachedMethods
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::CachedMethods 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::CachedMethods object:
29              
30             $result = $service_obj->Method(...);
31             $result->Att1->Items
32              
33             =head1 DESCRIPTION
34              
35             A complex type that controls whether CloudFront caches the response to
36             requests using the specified HTTP methods. There are two choices:
37              
38             =over
39              
40             =item *
41              
42             CloudFront caches responses to C<GET> and C<HEAD> requests.
43              
44             =item *
45              
46             CloudFront caches responses to C<GET>, C<HEAD>, and C<OPTIONS>
47             requests.
48              
49             =back
50              
51             If you pick the second choice for your Amazon S3 Origin, you may need
52             to forward Access-Control-Request-Method,
53             Access-Control-Request-Headers, and Origin headers for the responses to
54             be cached correctly.
55              
56             =head1 ATTRIBUTES
57              
58              
59             =head2 B<REQUIRED> Items => ArrayRef[Str|Undef]
60              
61             A complex type that contains the HTTP methods that you want CloudFront
62             to cache responses to.
63              
64              
65             =head2 B<REQUIRED> Quantity => Int
66              
67             The number of HTTP methods for which you want CloudFront to cache
68             responses. Valid values are C<2> (for caching responses to C<GET> and
69             C<HEAD> requests) and C<3> (for caching responses to C<GET>, C<HEAD>,
70             and C<OPTIONS> requests).
71              
72              
73              
74             =head1 SEE ALSO
75              
76             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront>
77              
78             =head1 BUGS and CONTRIBUTIONS
79              
80             The source code is located here: https://github.com/pplu/aws-sdk-perl
81              
82             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83              
84             =cut
85