File Coverage

blib/lib/Paws/RDS/CreateOptionGroup.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::CreateOptionGroup;
3 1     1   495 use Moose;
  1         3  
  1         6  
4             has EngineName => (is => 'ro', isa => 'Str', required => 1);
5             has MajorEngineVersion => (is => 'ro', isa => 'Str', required => 1);
6             has OptionGroupDescription => (is => 'ro', isa => 'Str', required => 1);
7             has OptionGroupName => (is => 'ro', isa => 'Str', required => 1);
8             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Tag]');
9              
10 1     1   8528 use MooseX::ClassAttribute;
  1         4  
  1         10  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateOptionGroup');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::CreateOptionGroupResult');
14             class_has _result_key => (isa => 'Str', is => 'ro', default => 'CreateOptionGroupResult');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::RDS::CreateOptionGroup - Arguments for method CreateOptionGroup on Paws::RDS
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method CreateOptionGroup on the
26             Amazon Relational Database Service service. Use the attributes of this class
27             as arguments to method CreateOptionGroup.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateOptionGroup.
30              
31             As an example:
32              
33             $service_obj->CreateOptionGroup(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             Specifies the name of the engine that this option group should be
43             associated with.
44              
45              
46              
47             =head2 B<REQUIRED> MajorEngineVersion => Str
48              
49             Specifies the major version of the engine that this option group should
50             be associated with.
51              
52              
53              
54             =head2 B<REQUIRED> OptionGroupDescription => Str
55              
56             The description of the option group.
57              
58              
59              
60             =head2 B<REQUIRED> OptionGroupName => Str
61              
62             Specifies the name of the option group to be created.
63              
64             Constraints:
65              
66             =over
67              
68             =item *
69              
70             Must be 1 to 255 alphanumeric characters or hyphens
71              
72             =item *
73              
74             First character must be a letter
75              
76             =item *
77              
78             Cannot end with a hyphen or contain two consecutive hyphens
79              
80             =back
81              
82             Example: C<myoptiongroup>
83              
84              
85              
86             =head2 Tags => ArrayRef[L<Paws::RDS::Tag>]
87              
88              
89              
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, documenting arguments for method CreateOptionGroup in L<Paws::RDS>
96              
97             =head1 BUGS and CONTRIBUTIONS
98              
99             The source code is located here: https://github.com/pplu/aws-sdk-perl
100              
101             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
102              
103             =cut
104