File Coverage

blib/lib/Paws/Batch/RegisterJobDefinitionResponse.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::Batch::RegisterJobDefinitionResponse;
3 1     1   757 use Moose;
  1         5  
  1         11  
4             has JobDefinitionArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'jobDefinitionArn', required => 1);
5             has JobDefinitionName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'jobDefinitionName', required => 1);
6             has Revision => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'revision', required => 1);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::Batch::RegisterJobDefinitionResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 B<REQUIRED> JobDefinitionArn => Str
21              
22             The Amazon Resource Name (ARN) of the job definition.
23              
24              
25             =head2 B<REQUIRED> JobDefinitionName => Str
26              
27             The name of the job definition.
28              
29              
30             =head2 B<REQUIRED> Revision => Int
31              
32             The revision of the job definition.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39