File Coverage

blib/lib/Paws/RDS/OptionGroup.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             package Paws::RDS::OptionGroup;
2 1     1   600 use Moose;
  1     1   4  
  1         10  
  1         579  
  1         2  
  1         8  
3             has AllowsVpcAndNonVpcInstanceMemberships => (is => 'ro', isa => 'Bool');
4             has EngineName => (is => 'ro', isa => 'Str');
5             has MajorEngineVersion => (is => 'ro', isa => 'Str');
6             has OptionGroupArn => (is => 'ro', isa => 'Str');
7             has OptionGroupDescription => (is => 'ro', isa => 'Str');
8             has OptionGroupName => (is => 'ro', isa => 'Str');
9             has Options => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Option]', request_name => 'Option', traits => ['NameInRequest']);
10             has VpcId => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::RDS::OptionGroup
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::RDS::OptionGroup object:
29              
30             $service_obj->Method(Att1 => { AllowsVpcAndNonVpcInstanceMemberships => $value, ..., VpcId => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::OptionGroup object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->AllowsVpcAndNonVpcInstanceMemberships
38              
39             =head1 DESCRIPTION
40              
41             This class has no description
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 AllowsVpcAndNonVpcInstanceMemberships => Bool
47              
48             Indicates whether this option group can be applied to both VPC and
49             non-VPC instances. The value C<true> indicates the option group can be
50             applied to both VPC and non-VPC instances.
51              
52              
53             =head2 EngineName => Str
54              
55             Indicates the name of the engine that this option group can be applied
56             to.
57              
58              
59             =head2 MajorEngineVersion => Str
60              
61             Indicates the major engine version associated with this option group.
62              
63              
64             =head2 OptionGroupArn => Str
65              
66             The Amazon Resource Name (ARN) for the option group.
67              
68              
69             =head2 OptionGroupDescription => Str
70              
71             Provides a description of the option group.
72              
73              
74             =head2 OptionGroupName => Str
75              
76             Specifies the name of the option group.
77              
78              
79             =head2 Options => ArrayRef[L<Paws::RDS::Option>]
80              
81             Indicates what options are available in the option group.
82              
83              
84             =head2 VpcId => Str
85              
86             If B<AllowsVpcAndNonVpcInstanceMemberships> is C<false>, this field is
87             blank. If B<AllowsVpcAndNonVpcInstanceMemberships> is C<true> and this
88             field is blank, then this option group can be applied to both VPC and
89             non-VPC instances. If this field contains a value, then this option
90             group can only be applied to instances that are in the VPC indicated by
91             this field.
92              
93              
94              
95             =head1 SEE ALSO
96              
97             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
98              
99             =head1 BUGS and CONTRIBUTIONS
100              
101             The source code is located here: https://github.com/pplu/aws-sdk-perl
102              
103             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
104              
105             =cut
106