File Coverage

blib/lib/Paws/RDS/Option.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::Option;
2 1     1   616 use Moose;
  1     1   3  
  1         10  
  1         566  
  1         3  
  1         7  
3             has DBSecurityGroupMemberships => (is => 'ro', isa => 'ArrayRef[Paws::RDS::DBSecurityGroupMembership]', request_name => 'DBSecurityGroup', traits => ['NameInRequest']);
4             has OptionDescription => (is => 'ro', isa => 'Str');
5             has OptionName => (is => 'ro', isa => 'Str');
6             has OptionSettings => (is => 'ro', isa => 'ArrayRef[Paws::RDS::OptionSetting]', request_name => 'OptionSetting', traits => ['NameInRequest']);
7             has OptionVersion => (is => 'ro', isa => 'Str');
8             has Permanent => (is => 'ro', isa => 'Bool');
9             has Persistent => (is => 'ro', isa => 'Bool');
10             has Port => (is => 'ro', isa => 'Int');
11             has VpcSecurityGroupMemberships => (is => 'ro', isa => 'ArrayRef[Paws::RDS::VpcSecurityGroupMembership]', request_name => 'VpcSecurityGroupMembership', traits => ['NameInRequest']);
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::RDS::Option
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::RDS::Option object:
30              
31             $service_obj->Method(Att1 => { DBSecurityGroupMemberships => $value, ..., VpcSecurityGroupMemberships => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::Option object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->DBSecurityGroupMemberships
39              
40             =head1 DESCRIPTION
41              
42             Option details.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 DBSecurityGroupMemberships => ArrayRef[L<Paws::RDS::DBSecurityGroupMembership>]
48              
49             If the option requires access to a port, then this DB security group
50             allows access to the port.
51              
52              
53             =head2 OptionDescription => Str
54              
55             The description of the option.
56              
57              
58             =head2 OptionName => Str
59              
60             The name of the option.
61              
62              
63             =head2 OptionSettings => ArrayRef[L<Paws::RDS::OptionSetting>]
64              
65             The option settings for this option.
66              
67              
68             =head2 OptionVersion => Str
69              
70             The version of the option.
71              
72              
73             =head2 Permanent => Bool
74              
75             Indicate if this option is permanent.
76              
77              
78             =head2 Persistent => Bool
79              
80             Indicate if this option is persistent.
81              
82              
83             =head2 Port => Int
84              
85             If required, the port configured for this option to use.
86              
87              
88             =head2 VpcSecurityGroupMemberships => ArrayRef[L<Paws::RDS::VpcSecurityGroupMembership>]
89              
90             If the option requires access to a port, then this VPC security group
91             allows access to the port.
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