File Coverage

blib/lib/Paws/ElasticTranscoder/CreatePresetResponse.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::CreatePresetResponse;
3 1     1   644 use Moose;
  1         4  
  1         9  
4             has Preset => (is => 'ro', isa => 'Paws::ElasticTranscoder::Preset');
5             has Warning => (is => 'ro', isa => 'Str');
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::CreatePresetResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Preset => L<Paws::ElasticTranscoder::Preset>
20              
21             A section of the response body that provides information about the
22             preset that is created.
23              
24              
25             =head2 Warning => Str
26              
27             If the preset settings don't comply with the standards for the video
28             codec but Elastic Transcoder created the preset, this message explains
29             the reason the preset settings don't meet the standard. Elastic
30             Transcoder created the preset because the settings might produce
31             acceptable output.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38