File Coverage

blib/lib/Paws/RDS/DBClusterMember.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::RDS::DBClusterMember;
2 1     1   662 use Moose;
  1         4  
  1         12  
3             has DBClusterParameterGroupStatus => (is => 'ro', isa => 'Str');
4             has DBInstanceIdentifier => (is => 'ro', isa => 'Str');
5             has IsClusterWriter => (is => 'ro', isa => 'Bool');
6             has PromotionTier => (is => 'ro', isa => 'Int');
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::RDS::DBClusterMember
14              
15             =head1 USAGE
16              
17             This class represents one of two things:
18              
19             =head3 Arguments in a call to a service
20              
21             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
22             Each attribute should be used as a named argument in the calls that expect this type of object.
23              
24             As an example, if Att1 is expected to be a Paws::RDS::DBClusterMember object:
25              
26             $service_obj->Method(Att1 => { DBClusterParameterGroupStatus => $value, ..., PromotionTier => $value });
27              
28             =head3 Results returned from an API call
29              
30             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::DBClusterMember object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->DBClusterParameterGroupStatus
34              
35             =head1 DESCRIPTION
36              
37             Contains information about an instance that is part of a DB cluster.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 DBClusterParameterGroupStatus => Str
43              
44             Specifies the status of the DB cluster parameter group for this member
45             of the DB cluster.
46              
47              
48             =head2 DBInstanceIdentifier => Str
49              
50             Specifies the instance identifier for this member of the DB cluster.
51              
52              
53             =head2 IsClusterWriter => Bool
54              
55             Value that is C<true> if the cluster member is the primary instance for
56             the DB cluster and C<false> otherwise.
57              
58              
59             =head2 PromotionTier => Int
60              
61             A value that specifies the order in which an Aurora Replica is promoted
62             to the primary instance after a failure of the existing primary
63             instance. For more information, see Fault Tolerance for an Aurora DB
64             Cluster.
65              
66              
67              
68             =head1 SEE ALSO
69              
70             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
71              
72             =head1 BUGS and CONTRIBUTIONS
73              
74             The source code is located here: https://github.com/pplu/aws-sdk-perl
75              
76             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
77              
78             =cut
79