File Coverage

blib/lib/Paws/ElasticBeanstalk/ApplyEnvironmentManagedActionResult.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::ElasticBeanstalk::ApplyEnvironmentManagedActionResult;
3 1     1   528 use Moose;
  1         5  
  1         8  
4             has ActionDescription => (is => 'ro', isa => 'Str');
5             has ActionId => (is => 'ro', isa => 'Str');
6             has ActionType => (is => 'ro', isa => 'Str');
7             has Status => (is => 'ro', isa => 'Str');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::ElasticBeanstalk::ApplyEnvironmentManagedActionResult
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 ActionDescription => Str
22              
23             A description of the managed action.
24              
25              
26             =head2 ActionId => Str
27              
28             The action ID of the managed action.
29              
30              
31             =head2 ActionType => Str
32              
33             The type of managed action.
34              
35             Valid values are: C<"InstanceRefresh">, C<"PlatformUpdate">, C<"Unknown">
36             =head2 Status => Str
37              
38             The status of the managed action.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45