File Coverage

blib/lib/Paws/RedShift/PendingModifiedValues.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::RedShift::PendingModifiedValues;
2 1     1   375 use Moose;
  1     1   3  
  1         6  
  1         390  
  1         2  
  1         6  
3             has AutomatedSnapshotRetentionPeriod => (is => 'ro', isa => 'Int');
4             has ClusterIdentifier => (is => 'ro', isa => 'Str');
5             has ClusterType => (is => 'ro', isa => 'Str');
6             has ClusterVersion => (is => 'ro', isa => 'Str');
7             has EnhancedVpcRouting => (is => 'ro', isa => 'Bool');
8             has MasterUserPassword => (is => 'ro', isa => 'Str');
9             has NodeType => (is => 'ro', isa => 'Str');
10             has NumberOfNodes => (is => 'ro', isa => 'Int');
11             has PubliclyAccessible => (is => 'ro', isa => 'Bool');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::RedShift::PendingModifiedValues
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::RedShift::PendingModifiedValues object:
30              
31             $service_obj->Method(Att1 => { AutomatedSnapshotRetentionPeriod => $value, ..., PubliclyAccessible => $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::RedShift::PendingModifiedValues object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->AutomatedSnapshotRetentionPeriod
39              
40             =head1 DESCRIPTION
41              
42             Describes cluster attributes that are in a pending state. A change to
43             one or more the attributes was requested and is in progress or will be
44             applied.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 AutomatedSnapshotRetentionPeriod => Int
50              
51             The pending or in-progress change of the automated snapshot retention
52             period.
53              
54              
55             =head2 ClusterIdentifier => Str
56              
57             The pending or in-progress change of the new identifier for the
58             cluster.
59              
60              
61             =head2 ClusterType => Str
62              
63             The pending or in-progress change of the cluster type.
64              
65              
66             =head2 ClusterVersion => Str
67              
68             The pending or in-progress change of the service version.
69              
70              
71             =head2 EnhancedVpcRouting => Bool
72              
73             An option that specifies whether to create the cluster with enhanced
74             VPC routing enabled. To create a cluster that uses enhanced VPC
75             routing, the cluster must be in a VPC. For more information, see
76             Enhanced VPC Routing in the Amazon Redshift Cluster Management Guide.
77              
78             If this option is C<true>, enhanced VPC routing is enabled.
79              
80             Default: false
81              
82              
83             =head2 MasterUserPassword => Str
84              
85             The pending or in-progress change of the master user password for the
86             cluster.
87              
88              
89             =head2 NodeType => Str
90              
91             The pending or in-progress change of the cluster's node type.
92              
93              
94             =head2 NumberOfNodes => Int
95              
96             The pending or in-progress change of the number of nodes in the
97             cluster.
98              
99              
100             =head2 PubliclyAccessible => Bool
101              
102             The pending or in-progress change of the ability to connect to the
103             cluster from the public network.
104              
105              
106              
107             =head1 SEE ALSO
108              
109             This class forms part of L<Paws>, describing an object used in L<Paws::RedShift>
110              
111             =head1 BUGS and CONTRIBUTIONS
112              
113             The source code is located here: https://github.com/pplu/aws-sdk-perl
114              
115             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
116              
117             =cut
118