File Coverage

blib/lib/Paws/CloudFront/StreamingDistributionList.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::StreamingDistributionList;
2 1     1   413 use Moose;
  1         2  
  1         6  
3             has IsTruncated => (is => 'ro', isa => 'Bool', required => 1);
4             has Items => (is => 'ro', isa => 'ArrayRef[Paws::CloudFront::StreamingDistributionSummary]', request_name => 'StreamingDistributionSummary', traits => ['NameInRequest']);
5             has Marker => (is => 'ro', isa => 'Str', required => 1);
6             has MaxItems => (is => 'ro', isa => 'Int', required => 1);
7             has NextMarker => (is => 'ro', isa => 'Str');
8             has Quantity => (is => 'ro', isa => 'Int', required => 1);
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CloudFront::StreamingDistributionList
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::CloudFront::StreamingDistributionList object:
27              
28             $service_obj->Method(Att1 => { IsTruncated => $value, ..., Quantity => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFront::StreamingDistributionList object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->IsTruncated
36              
37             =head1 DESCRIPTION
38              
39             A streaming distribution list.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 B<REQUIRED> IsTruncated => Bool
45              
46             A flag that indicates whether more streaming distributions remain to be
47             listed. If your results were truncated, you can make a follow-up
48             pagination request using the C<Marker> request parameter to retrieve
49             more distributions in the list.
50              
51              
52             =head2 Items => ArrayRef[L<Paws::CloudFront::StreamingDistributionSummary>]
53              
54             A complex type that contains one C<StreamingDistributionSummary>
55             element for each distribution that was created by the current AWS
56             account.
57              
58              
59             =head2 B<REQUIRED> Marker => Str
60              
61             The value you provided for the C<Marker> request parameter.
62              
63              
64             =head2 B<REQUIRED> MaxItems => Int
65              
66             The value you provided for the C<MaxItems> request parameter.
67              
68              
69             =head2 NextMarker => Str
70              
71             If C<IsTruncated> is C<true>, this element is present and contains the
72             value you can use for the C<Marker> request parameter to continue
73             listing your RTMP distributions where they left off.
74              
75              
76             =head2 B<REQUIRED> Quantity => Int
77              
78             The number of streaming distributions that were created by the current
79             AWS account.
80              
81              
82              
83             =head1 SEE ALSO
84              
85             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront>
86              
87             =head1 BUGS and CONTRIBUTIONS
88              
89             The source code is located here: https://github.com/pplu/aws-sdk-perl
90              
91             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
92              
93             =cut
94