line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RDS::CopyDBParameterGroup; |
3
|
1
|
|
|
1
|
|
269
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has SourceDBParameterGroupIdentifier => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has Tags => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Tag]'); |
6
|
|
|
|
|
|
|
has TargetDBParameterGroupDescription => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has TargetDBParameterGroupIdentifier => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
5255
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'CopyDBParameterGroup'); |
12
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::CopyDBParameterGroupResult'); |
13
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro', default => 'CopyDBParameterGroupResult'); |
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::RDS::CopyDBParameterGroup - Arguments for method CopyDBParameterGroup on Paws::RDS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 DESCRIPTION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This class represents the parameters used for calling the method CopyDBParameterGroup on the |
25
|
|
|
|
|
|
|
Amazon Relational Database Service service. Use the attributes of this class |
26
|
|
|
|
|
|
|
as arguments to method CopyDBParameterGroup. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CopyDBParameterGroup. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->CopyDBParameterGroup(Att1 => $value1, Att2 => $value2, ...); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
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. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 B<REQUIRED> SourceDBParameterGroupIdentifier => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The identifier or ARN for the source DB parameter group. For |
42
|
|
|
|
|
|
|
information about creating an ARN, see Constructing an RDS Amazon |
43
|
|
|
|
|
|
|
Resource Name (ARN). |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Constraints: |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=over |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Must specify a valid DB parameter group. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=item * |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Must specify a valid DB parameter group identifier, for example |
56
|
|
|
|
|
|
|
C<my-db-param-group>, or a valid ARN. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=back |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 Tags => ArrayRef[L<Paws::RDS::Tag>] |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 B<REQUIRED> TargetDBParameterGroupDescription => Str |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
A description for the copied DB parameter group. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head2 B<REQUIRED> TargetDBParameterGroupIdentifier => Str |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
The identifier for the copied DB parameter group. |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
Constraints: |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=over |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=item * |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Cannot be null, empty, or blank |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=item * |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
Must contain from 1 to 255 alphanumeric characters or hyphens |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=item * |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
First character must be a letter |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=item * |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
Cannot end with a hyphen or contain two consecutive hyphens |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=back |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Example: C<my-db-parameter-group> |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head1 SEE ALSO |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method CopyDBParameterGroup in L<Paws::RDS> |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=cut |
117
|
|
|
|
|
|
|
|