File Coverage

blib/lib/Paws/ElasticTranscoder/CreatePipelineResponse.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              
2             package Paws::ElasticTranscoder::CreatePipelineResponse;
3 1     1   494 use Moose;
  1         3  
  1         7  
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::CreatePipelineResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Pipeline => L<Paws::ElasticTranscoder::Pipeline>
20              
21             A section of the response body that provides information about the
22             pipeline that is created.
23              
24              
25             =head2 Warnings => ArrayRef[L<Paws::ElasticTranscoder::Warning>]
26              
27             Elastic Transcoder returns a warning if the resources used by your
28             pipeline are not in the same region as the pipeline.
29              
30             Using resources in the same region, such as your Amazon S3 buckets,
31             Amazon SNS notification topics, and AWS KMS key, reduces processing
32             time and prevents cross-regional charges.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39