File Coverage

blib/lib/Paws/RDS/DescribeDBClusterParameters.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::DescribeDBClusterParameters;
3 1     1   608 use Moose;
  1         3  
  1         10  
4             has DBClusterParameterGroupName => (is => 'ro', isa => 'Str', required => 1);
5             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Filter]');
6             has Marker => (is => 'ro', isa => 'Str');
7             has MaxRecords => (is => 'ro', isa => 'Int');
8             has Source => (is => 'ro', isa => 'Str');
9              
10 1     1   7230 use MooseX::ClassAttribute;
  1         4  
  1         15  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeDBClusterParameters');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::DBClusterParameterGroupDetails');
14             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeDBClusterParametersResult');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::RDS::DescribeDBClusterParameters - Arguments for method DescribeDBClusterParameters on Paws::RDS
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method DescribeDBClusterParameters on the
26             Amazon Relational Database Service service. Use the attributes of this class
27             as arguments to method DescribeDBClusterParameters.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeDBClusterParameters.
30              
31             As an example:
32              
33             $service_obj->DescribeDBClusterParameters(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> DBClusterParameterGroupName => Str
41              
42             The name of a specific DB cluster parameter group to return parameter
43             details for.
44              
45             Constraints:
46              
47             =over
48              
49             =item *
50              
51             Must be 1 to 255 alphanumeric characters
52              
53             =item *
54              
55             First character must be a letter
56              
57             =item *
58              
59             Cannot end with a hyphen or contain two consecutive hyphens
60              
61             =back
62              
63              
64              
65              
66             =head2 Filters => ArrayRef[L<Paws::RDS::Filter>]
67              
68             This parameter is not currently supported.
69              
70              
71              
72             =head2 Marker => Str
73              
74             An optional pagination token provided by a previous
75             C<DescribeDBClusterParameters> request. If this parameter is specified,
76             the response includes only records beyond the marker, up to the value
77             specified by C<MaxRecords>.
78              
79              
80              
81             =head2 MaxRecords => Int
82              
83             The maximum number of records to include in the response. If more
84             records exist than the specified C<MaxRecords> value, a pagination
85             token called a marker is included in the response so that the remaining
86             results can be retrieved.
87              
88             Default: 100
89              
90             Constraints: Minimum 20, maximum 100.
91              
92              
93              
94             =head2 Source => Str
95              
96             A value that indicates to return only parameters for a specific source.
97             Parameter sources can be C<engine>, C<service>, or C<customer>.
98              
99              
100              
101              
102             =head1 SEE ALSO
103              
104             This class forms part of L<Paws>, documenting arguments for method DescribeDBClusterParameters in L<Paws::RDS>
105              
106             =head1 BUGS and CONTRIBUTIONS
107              
108             The source code is located here: https://github.com/pplu/aws-sdk-perl
109              
110             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
111              
112             =cut
113