File Coverage

blib/lib/Paws/Discovery/ListConfigurationsResponse.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::Discovery::ListConfigurationsResponse;
3 1     1   541 use Moose;
  1         3  
  1         6  
4             has Configurations => (is => 'ro', isa => 'ArrayRef[Paws::Discovery::Configuration]', traits => ['NameInRequest'], request_name => 'configurations' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Discovery::ListConfigurationsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Configurations => ArrayRef[L<Paws::Discovery::Configuration>]
19              
20             Returns configuration details, including the configuration ID,
21             attribute names, and attribute values.
22              
23              
24             =head2 NextToken => Str
25              
26             Token to retrieve the next set of results. For example, if your call to
27             ListConfigurations returned 100 items, but you set
28             C<ListConfigurationsRequest$maxResults> to 10, you received a set of 10
29             results along with this token. Use this token in the next query to
30             retrieve the next set of 10.
31              
32              
33             =head2 _request_id => Str
34              
35              
36             =cut
37              
38             1;