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