File Coverage

blib/lib/Paws/RedShift/ClusterParameterGroupStatus.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::ClusterParameterGroupStatus;
2 1     1   680 use Moose;
  1     1   3  
  1         10  
  1         443  
  1         3  
  1         5  
3             has ClusterParameterStatusList => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::ClusterParameterStatus]');
4             has ParameterApplyStatus => (is => 'ro', isa => 'Str');
5             has ParameterGroupName => (is => 'ro', isa => 'Str');
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::RedShift::ClusterParameterGroupStatus
13              
14             =head1 USAGE
15              
16             This class represents one of two things:
17              
18             =head3 Arguments in a call to a service
19              
20             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
21             Each attribute should be used as a named argument in the calls that expect this type of object.
22              
23             As an example, if Att1 is expected to be a Paws::RedShift::ClusterParameterGroupStatus object:
24              
25             $service_obj->Method(Att1 => { ClusterParameterStatusList => $value, ..., ParameterGroupName => $value });
26              
27             =head3 Results returned from an API call
28              
29             Use accessors for each attribute. If Att1 is expected to be an Paws::RedShift::ClusterParameterGroupStatus object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->ClusterParameterStatusList
33              
34             =head1 DESCRIPTION
35              
36             Describes the status of a parameter group.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 ClusterParameterStatusList => ArrayRef[L<Paws::RedShift::ClusterParameterStatus>]
42              
43             The list of parameter statuses.
44              
45             For more information about parameters and parameter groups, go to
46             Amazon Redshift Parameter Groups in the I<Amazon Redshift Cluster
47             Management Guide>.
48              
49              
50             =head2 ParameterApplyStatus => Str
51              
52             The status of parameter updates.
53              
54              
55             =head2 ParameterGroupName => Str
56              
57             The name of the cluster parameter group.
58              
59              
60              
61             =head1 SEE ALSO
62              
63             This class forms part of L<Paws>, describing an object used in L<Paws::RedShift>
64              
65             =head1 BUGS and CONTRIBUTIONS
66              
67             The source code is located here: https://github.com/pplu/aws-sdk-perl
68              
69             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
70              
71             =cut
72