File Coverage

blib/lib/Paws/RedShift/ClusterCredentials.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              
2             package Paws::RedShift::ClusterCredentials;
3 1     1   525 use Moose;
  1         3  
  1         8  
4             has DbPassword => (is => 'ro', isa => 'Str');
5             has DbUser => (is => 'ro', isa => 'Str');
6             has Expiration => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::RedShift::ClusterCredentials
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 DbPassword => Str
21              
22             A temporary password that authorizes the user name returned by
23             C<DbUser> to log on to the database C<DbName>.
24              
25              
26             =head2 DbUser => Str
27              
28             A database user name that is authorized to log on to the database
29             C<DbName> using the password C<DbPassword>. If the C<DbGroups>
30             parameter is specifed, C<DbUser> is added to the listed groups for the
31             current session. The user name is prefixed with C<IAM:> for an existing
32             user name or C<IAMA:> if the user was auto-created.
33              
34              
35             =head2 Expiration => Str
36              
37             The date and time C<DbPassword> expires.
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44