File Coverage

blib/lib/Paws/CloudFront/StreamingDistribution.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::StreamingDistribution;
2 1     1   451 use Moose;
  1         2  
  1         9  
3             has ActiveTrustedSigners => (is => 'ro', isa => 'Paws::CloudFront::ActiveTrustedSigners', required => 1);
4             has ARN => (is => 'ro', isa => 'Str', required => 1);
5             has DomainName => (is => 'ro', isa => 'Str', required => 1);
6             has Id => (is => 'ro', isa => 'Str', required => 1);
7             has LastModifiedTime => (is => 'ro', isa => 'Str');
8             has Status => (is => 'ro', isa => 'Str', required => 1);
9             has StreamingDistributionConfig => (is => 'ro', isa => 'Paws::CloudFront::StreamingDistributionConfig', required => 1);
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::CloudFront::StreamingDistribution
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::CloudFront::StreamingDistribution object:
28              
29             $service_obj->Method(Att1 => { ActiveTrustedSigners => $value, ..., StreamingDistributionConfig => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFront::StreamingDistribution object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->ActiveTrustedSigners
37              
38             =head1 DESCRIPTION
39              
40             A streaming distribution.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 B<REQUIRED> ActiveTrustedSigners => L<Paws::CloudFront::ActiveTrustedSigners>
46              
47             A complex type that lists the AWS accounts, if any, that you included
48             in the C<TrustedSigners> complex type for this distribution. These are
49             the accounts that you want to allow to create signed URLs for private
50             content.
51              
52             The C<Signer> complex type lists the AWS account number of the trusted
53             signer or C<self> if the signer is the AWS account that created the
54             distribution. The C<Signer> element also includes the IDs of any active
55             CloudFront key pairs that are associated with the trusted signer's AWS
56             account. If no C<KeyPairId> element appears for a C<Signer>, that
57             signer can't create signed URLs.
58              
59             For more information, see Serving Private Content through CloudFront in
60             the I<Amazon CloudFront Developer Guide>.
61              
62              
63             =head2 B<REQUIRED> ARN => Str
64              
65            
66              
67              
68             =head2 B<REQUIRED> DomainName => Str
69              
70             The domain name that corresponds to the streaming distribution. For
71             example: C<s5c39gqb8ow64r.cloudfront.net>.
72              
73              
74             =head2 B<REQUIRED> Id => Str
75              
76             The identifier for the RTMP distribution. For example:
77             C<EGTXBD79EXAMPLE>.
78              
79              
80             =head2 LastModifiedTime => Str
81              
82             The date and time that the distribution was last modified.
83              
84              
85             =head2 B<REQUIRED> Status => Str
86              
87             The current status of the RTMP distribution. When the status is
88             C<Deployed>, the distribution's information is propagated to all
89             CloudFront edge locations.
90              
91              
92             =head2 B<REQUIRED> StreamingDistributionConfig => L<Paws::CloudFront::StreamingDistributionConfig>
93              
94             The current configuration information for the RTMP distribution.
95              
96              
97              
98             =head1 SEE ALSO
99              
100             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFront>
101              
102             =head1 BUGS and CONTRIBUTIONS
103              
104             The source code is located here: https://github.com/pplu/aws-sdk-perl
105              
106             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
107              
108             =cut
109