File Coverage

blib/lib/Paws/EMR/ListSecurityConfigurationsOutput.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::EMR::ListSecurityConfigurationsOutput;
3 1     1   528 use Moose;
  1         4  
  1         7  
4             has Marker => (is => 'ro', isa => 'Str');
5             has SecurityConfigurations => (is => 'ro', isa => 'ArrayRef[Paws::EMR::SecurityConfigurationSummary]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::EMR::ListSecurityConfigurationsOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Marker => Str
19              
20             A pagination token that indicates the next set of results to retrieve.
21             Include the marker in the next ListSecurityConfiguration call to
22             retrieve the next page of results, if required.
23              
24              
25             =head2 SecurityConfigurations => ArrayRef[L<Paws::EMR::SecurityConfigurationSummary>]
26              
27             The creation date and time, and name, of each security configuration.
28              
29              
30             =head2 _request_id => Str
31              
32              
33             =cut
34              
35             1;