File Coverage

blib/lib/Paws/OpsWorks/RdsDbInstance.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::OpsWorks::RdsDbInstance;
2 1     1   462 use Moose;
  1         2  
  1         9  
3             has Address => (is => 'ro', isa => 'Str');
4             has DbInstanceIdentifier => (is => 'ro', isa => 'Str');
5             has DbPassword => (is => 'ro', isa => 'Str');
6             has DbUser => (is => 'ro', isa => 'Str');
7             has Engine => (is => 'ro', isa => 'Str');
8             has MissingOnRds => (is => 'ro', isa => 'Bool');
9             has RdsDbInstanceArn => (is => 'ro', isa => 'Str');
10             has Region => (is => 'ro', isa => 'Str');
11             has StackId => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::OpsWorks::RdsDbInstance
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::OpsWorks::RdsDbInstance object:
30              
31             $service_obj->Method(Att1 => { Address => $value, ..., StackId => $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::OpsWorks::RdsDbInstance object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->Address
39              
40             =head1 DESCRIPTION
41              
42             Describes an Amazon RDS instance.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 Address => Str
48              
49             The instance's address.
50              
51              
52             =head2 DbInstanceIdentifier => Str
53              
54             The DB instance identifier.
55              
56              
57             =head2 DbPassword => Str
58              
59             AWS OpsWorks Stacks returns C<*****FILTERED*****> instead of the actual
60             value.
61              
62              
63             =head2 DbUser => Str
64              
65             The master user name.
66              
67              
68             =head2 Engine => Str
69              
70             The instance's database engine.
71              
72              
73             =head2 MissingOnRds => Bool
74              
75             Set to C<true> if AWS OpsWorks Stacks is unable to discover the Amazon
76             RDS instance. AWS OpsWorks Stacks attempts to discover the instance
77             only once. If this value is set to C<true>, you must deregister the
78             instance, and then register it again.
79              
80              
81             =head2 RdsDbInstanceArn => Str
82              
83             The instance's ARN.
84              
85              
86             =head2 Region => Str
87              
88             The instance's AWS region.
89              
90              
91             =head2 StackId => Str
92              
93             The ID of the stack with which the instance is registered.
94              
95              
96              
97             =head1 SEE ALSO
98              
99             This class forms part of L<Paws>, describing an object used in L<Paws::OpsWorks>
100              
101             =head1 BUGS and CONTRIBUTIONS
102              
103             The source code is located here: https://github.com/pplu/aws-sdk-perl
104              
105             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
106              
107             =cut
108