File Coverage

blib/lib/Paws/RDS/DescribeOptionGroupOptions.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::RDS::DescribeOptionGroupOptions;
3 1     1   649 use Moose;
  1         75  
  1         12  
4             has EngineName => (is => 'ro', isa => 'Str', required => 1);
5             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Filter]');
6             has MajorEngineVersion => (is => 'ro', isa => 'Str');
7             has Marker => (is => 'ro', isa => 'Str');
8             has MaxRecords => (is => 'ro', isa => 'Int');
9              
10 1     1   7360 use MooseX::ClassAttribute;
  1         6  
  1         17  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeOptionGroupOptions');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::OptionGroupOptionsMessage');
14             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeOptionGroupOptionsResult');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::RDS::DescribeOptionGroupOptions - Arguments for method DescribeOptionGroupOptions on Paws::RDS
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method DescribeOptionGroupOptions on the
26             Amazon Relational Database Service service. Use the attributes of this class
27             as arguments to method DescribeOptionGroupOptions.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeOptionGroupOptions.
30              
31             As an example:
32              
33             $service_obj->DescribeOptionGroupOptions(Att1 => $value1, Att2 => $value2, ...);
34              
35             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
36              
37             =head1 ATTRIBUTES
38              
39              
40             =head2 B<REQUIRED> EngineName => Str
41              
42             A required parameter. Options available for the given engine name will
43             be described.
44              
45              
46              
47             =head2 Filters => ArrayRef[L<Paws::RDS::Filter>]
48              
49             This parameter is not currently supported.
50              
51              
52              
53             =head2 MajorEngineVersion => Str
54              
55             If specified, filters the results to include only options for the
56             specified major engine version.
57              
58              
59              
60             =head2 Marker => Str
61              
62             An optional pagination token provided by a previous request. If this
63             parameter is specified, the response includes only records beyond the
64             marker, up to the value specified by C<MaxRecords>.
65              
66              
67              
68             =head2 MaxRecords => Int
69              
70             The maximum number of records to include in the response. If more
71             records exist than the specified C<MaxRecords> value, a pagination
72             token called a marker is included in the response so that the remaining
73             results can be retrieved.
74              
75             Default: 100
76              
77             Constraints: Minimum 20, maximum 100.
78              
79              
80              
81              
82             =head1 SEE ALSO
83              
84             This class forms part of L<Paws>, documenting arguments for method DescribeOptionGroupOptions in L<Paws::RDS>
85              
86             =head1 BUGS and CONTRIBUTIONS
87              
88             The source code is located here: https://github.com/pplu/aws-sdk-perl
89              
90             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
91              
92             =cut
93