File Coverage

blib/lib/Paws/ElasticTranscoder/PipelineOutputConfig.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::ElasticTranscoder::PipelineOutputConfig;
2 1     1   410 use Moose;
  1         2  
  1         6  
3             has Bucket => (is => 'ro', isa => 'Str');
4             has Permissions => (is => 'ro', isa => 'ArrayRef[Paws::ElasticTranscoder::Permission]');
5             has StorageClass => (is => 'ro', isa => 'Str');
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::ElasticTranscoder::PipelineOutputConfig
13              
14             =head1 USAGE
15              
16             This class represents one of two things:
17              
18             =head3 Arguments in a call to a service
19              
20             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
21             Each attribute should be used as a named argument in the calls that expect this type of object.
22              
23             As an example, if Att1 is expected to be a Paws::ElasticTranscoder::PipelineOutputConfig object:
24              
25             $service_obj->Method(Att1 => { Bucket => $value, ..., StorageClass => $value });
26              
27             =head3 Results returned from an API call
28              
29             Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticTranscoder::PipelineOutputConfig object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->Bucket
33              
34             =head1 DESCRIPTION
35              
36             The C<PipelineOutputConfig> structure.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 Bucket => Str
42              
43             The Amazon S3 bucket in which you want Elastic Transcoder to save the
44             transcoded files. Specify this value when all of the following are
45             true:
46              
47             =over
48              
49             =item *
50              
51             You want to save transcoded files, thumbnails (if any), and playlists
52             (if any) together in one bucket.
53              
54             =item *
55              
56             You do not want to specify the users or groups who have access to the
57             transcoded files, thumbnails, and playlists.
58              
59             =item *
60              
61             You do not want to specify the permissions that Elastic Transcoder
62             grants to the files.
63              
64             =item *
65              
66             You want to associate the transcoded files and thumbnails with the
67             Amazon S3 Standard storage class.
68              
69             =back
70              
71             If you want to save transcoded files and playlists in one bucket and
72             thumbnails in another bucket, specify which users can access the
73             transcoded files or the permissions the users have, or change the
74             Amazon S3 storage class, omit OutputBucket and specify values for
75             C<ContentConfig> and C<ThumbnailConfig> instead.
76              
77              
78             =head2 Permissions => ArrayRef[L<Paws::ElasticTranscoder::Permission>]
79              
80             Optional. The C<Permissions> object specifies which users and/or
81             predefined Amazon S3 groups you want to have access to transcoded files
82             and playlists, and the type of access you want them to have. You can
83             grant permissions to a maximum of 30 users and/or predefined Amazon S3
84             groups.
85              
86             If you include C<Permissions>, Elastic Transcoder grants only the
87             permissions that you specify. It does not grant full permissions to the
88             owner of the role specified by C<Role>. If you want that user to have
89             full control, you must explicitly grant full control to the user.
90              
91             If you omit C<Permissions>, Elastic Transcoder grants full control over
92             the transcoded files and playlists to the owner of the role specified
93             by C<Role>, and grants no other permissions to any other user or group.
94              
95              
96             =head2 StorageClass => Str
97              
98             The Amazon S3 storage class, C<Standard> or C<ReducedRedundancy>, that
99             you want Elastic Transcoder to assign to the video files and playlists
100             that it stores in your Amazon S3 bucket.
101              
102              
103              
104             =head1 SEE ALSO
105              
106             This class forms part of L<Paws>, describing an object used in L<Paws::ElasticTranscoder>
107              
108             =head1 BUGS and CONTRIBUTIONS
109              
110             The source code is located here: https://github.com/pplu/aws-sdk-perl
111              
112             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
113              
114             =cut
115