line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RDS::ModifyOptionGroup; |
3
|
1
|
|
|
1
|
|
299
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ApplyImmediately => (is => 'ro', isa => 'Bool'); |
5
|
|
|
|
|
|
|
has OptionGroupName => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has OptionsToInclude => (is => 'ro', isa => 'ArrayRef[Paws::RDS::OptionConfiguration]'); |
7
|
|
|
|
|
|
|
has OptionsToRemove => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
5348
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ModifyOptionGroup'); |
12
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::ModifyOptionGroupResult'); |
13
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro', default => 'ModifyOptionGroupResult'); |
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
### main pod documentation begin ### |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Paws::RDS::ModifyOptionGroup - Arguments for method ModifyOptionGroup on Paws::RDS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 DESCRIPTION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ModifyOptionGroup on the |
25
|
|
|
|
|
|
|
Amazon Relational Database Service service. Use the attributes of this class |
26
|
|
|
|
|
|
|
as arguments to method ModifyOptionGroup. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ModifyOptionGroup. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->ModifyOptionGroup(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 ApplyImmediately => Bool |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Indicates whether the changes should be applied immediately, or during |
42
|
|
|
|
|
|
|
the next maintenance window for each instance associated with the |
43
|
|
|
|
|
|
|
option group. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 B<REQUIRED> OptionGroupName => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
The name of the option group to be modified. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Permanent options, such as the TDE option for Oracle Advanced Security |
52
|
|
|
|
|
|
|
TDE, cannot be removed from an option group, and that option group |
53
|
|
|
|
|
|
|
cannot be removed from a DB instance once it is associated with a DB |
54
|
|
|
|
|
|
|
instance |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 OptionsToInclude => ArrayRef[L<Paws::RDS::OptionConfiguration>] |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Options in this list are added to the option group or, if already |
61
|
|
|
|
|
|
|
present, the specified configuration is used to update the existing |
62
|
|
|
|
|
|
|
configuration. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 OptionsToRemove => ArrayRef[Str|Undef] |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Options in this list are removed from the option group. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head1 SEE ALSO |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ModifyOptionGroup in L<Paws::RDS> |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=cut |
84
|
|
|
|
|
|
|
|