File Coverage

blib/lib/Paws/RedShift/OrderableClusterOptionsMessage.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::RedShift::OrderableClusterOptionsMessage;
3 1     1   631 use Moose;
  1     1   4  
  1         10  
  1         602  
  1         3  
  1         11  
4             has Marker => (is => 'ro', isa => 'Str');
5             has OrderableClusterOptions => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::OrderableClusterOption]', request_name => 'OrderableClusterOption', traits => ['NameInRequest',]);
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::RedShift::OrderableClusterOptionsMessage
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Marker => Str
20              
21             A value that indicates the starting point for the next set of response
22             records in a subsequent request. If a value is returned in a response,
23             you can retrieve the next set of records by providing this returned
24             marker value in the C<Marker> parameter and retrying the command. If
25             the C<Marker> field is empty, all response records have been retrieved
26             for the request.
27              
28              
29             =head2 OrderableClusterOptions => ArrayRef[L<Paws::RedShift::OrderableClusterOption>]
30              
31             An C<OrderableClusterOption> structure containing information about
32             orderable options for the cluster.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39