| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ElasticTranscoder::UpdatePipelineResponse; |
|
3
|
1
|
|
|
1
|
|
890
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
|
|
has Pipeline => (is => 'ro', isa => 'Paws::ElasticTranscoder::Pipeline'); |
|
5
|
|
|
|
|
|
|
has Warnings => (is => 'ro', isa => 'ArrayRef[Paws::ElasticTranscoder::Warning]'); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::ElasticTranscoder::UpdatePipelineResponse |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Pipeline => L<Paws::ElasticTranscoder::Pipeline> |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The pipeline updated by this C<UpdatePipelineResponse> call. |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 Warnings => ArrayRef[L<Paws::ElasticTranscoder::Warning>] |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Elastic Transcoder returns a warning if the resources used by your |
|
27
|
|
|
|
|
|
|
pipeline are not in the same region as the pipeline. |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Using resources in the same region, such as your Amazon S3 buckets, |
|
30
|
|
|
|
|
|
|
Amazon SNS notification topics, and AWS KMS key, reduces processing |
|
31
|
|
|
|
|
|
|
time and prevents cross-regional charges. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
|
38
|
|
|
|
|
|
|
|