File Coverage

blib/lib/Paws/CloudFront/StreamingDistributionSummary.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::StreamingDistributionSummary;
2 1     1   515 use Moose;
  1         3  
  1         9  
3             has Aliases => (is => 'ro', isa => 'Paws::CloudFront::Aliases', required => 1);
4             has ARN => (is => 'ro', isa => 'Str', required => 1);
5             has Comment => (is => 'ro', isa => 'Str', required => 1);
6             has DomainName => (is => 'ro', isa => 'Str', required => 1);
7             has Enabled => (is => 'ro', isa => 'Bool', required => 1);
8             has Id => (is => 'ro', isa => 'Str', required => 1);
9             has LastModifiedTime => (is => 'ro', isa => 'Str', required => 1);
10             has PriceClass => (is => 'ro', isa => 'Str', required => 1);
11             has S3Origin => (is => 'ro', isa => 'Paws::CloudFront::S3Origin', required => 1);
12             has Status => (is => 'ro', isa => 'Str', required => 1);
13             has TrustedSigners => (is => 'ro', isa => 'Paws::CloudFront::TrustedSigners', required => 1);
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::CloudFront::StreamingDistributionSummary
21              
22             =head1 USAGE
23              
24             This class represents one of two things:
25              
26             =head3 Arguments in a call to a service
27              
28             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
29             Each attribute should be used as a named argument in the calls that expect this type of object.
30              
31             As an example, if Att1 is expected to be a Paws::CloudFront::StreamingDistributionSummary object:
32              
33             $service_obj->Method(Att1 => { Aliases => $value, ..., TrustedSigners => $value });
34              
35             =head3 Results returned from an API call
36              
37             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFront::StreamingDistributionSummary object:
38              
39             $result = $service_obj->Method(...);
40             $result->Att1->Aliases
41              
42             =head1 DESCRIPTION
43              
44             A summary of the information for an Amazon CloudFront streaming
45             distribution.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 B<REQUIRED> Aliases => L<Paws::CloudFront::Aliases>
51              
52             A complex type that contains information about CNAMEs (alternate domain
53             names), if any, for this streaming distribution.
54              
55              
56             =head2 B<REQUIRED> ARN => Str
57              
58             The ARN (Amazon Resource Name) for the streaming distribution. For
59             example:
60             C<arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5>,
61             where C<123456789012> is your AWS account ID.
62              
63              
64             =head2 B<REQUIRED> Comment => Str
65              
66             The comment originally specified when this distribution was created.
67              
68              
69             =head2 B<REQUIRED> DomainName => Str
70              
71             The domain name corresponding to the distribution. For example:
72             C<d604721fxaaqy9.cloudfront.net>.
73              
74              
75             =head2 B<REQUIRED> Enabled => Bool
76              
77             Whether the distribution is enabled to accept end user requests for
78             content.
79              
80              
81             =head2 B<REQUIRED> Id => Str
82              
83             The identifier for the distribution. For example: C<EDFDVBD632BHDS5>.
84              
85              
86             =head2 B<REQUIRED> LastModifiedTime => Str
87              
88             The date and time the distribution was last modified.
89              
90              
91             =head2 B<REQUIRED> PriceClass => Str
92              
93            
94              
95              
96             =head2 B<REQUIRED> S3Origin => L<Paws::CloudFront::S3Origin>
97              
98             A complex type that contains information about the Amazon S3 bucket
99             from which you want CloudFront to get your media files for
100             distribution.
101              
102              
103             =head2 B<REQUIRED> Status => Str
104              
105             Indicates the current status of the distribution. When the status is
106             C<Deployed>, the distribution's information is fully propagated
107             throughout the Amazon CloudFront system.
108              
109              
110             =head2 B<REQUIRED> TrustedSigners => L<Paws::CloudFront::TrustedSigners>
111              
112             A complex type that specifies the AWS accounts, if any, that you want
113             to allow to create signed URLs for private content. If you want to
114             require signed URLs in requests for objects in the target origin that
115             match the C<PathPattern> for this cache behavior, specify C<true> for
116             C<Enabled>, and specify the applicable values for C<Quantity> and
117             C<Items>.If you don't want to require signed URLs in requests for
118             objects that match C<PathPattern>, specify C<false> for C<Enabled> and
119             C<0> for C<Quantity>. Omit C<Items>. To add, change, or remove one or
120             more trusted signers, change C<Enabled> to C<true> (if it's currently
121             C<false>), change C<Quantity> as applicable, and specify all of the
122             trusted signers that you want to include in the updated distribution.
123              
124              
125              
126             =head1 SEE ALSO
127              
128             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront>
129              
130             =head1 BUGS and CONTRIBUTIONS
131              
132             The source code is located here: https://github.com/pplu/aws-sdk-perl
133              
134             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
135              
136             =cut
137