PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::RedShift::GetClusterCredentials; use Moose; has AutoCreate => (is => 'ro', isa => 'Bool'); has ClusterIdentifier => (is => 'ro', isa => 'Str', required => 1); has DbGroups => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has DbName => (is => 'ro', isa => 'Str'); has DbUser => (is => 'ro', isa => 'Str', required => 1); has DurationSeconds => (is => 'ro', isa => 'Int'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetClusterCredentials'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RedShift::ClusterCredentials'); class_has _result_key => (isa => 'Str', is => 'ro', default => 'GetClusterCredentialsResult'); 1; ### main pod documentation begin ### =head1 NAME Paws::RedShift::GetClusterCredentials - Arguments for method GetClusterCredentials on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetClusterCredentials on the L service. Use the attributes of this class as arguments to method GetClusterCredentials. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetClusterCredentials. =head1 SYNOPSIS my $redshift = Paws->service('RedShift'); my $ClusterCredentials = $redshift->GetClusterCredentials( ClusterIdentifier => 'MyString', DbUser => 'MyString', AutoCreate => 1, # OPTIONAL DbGroups => [ 'MyString', ... # max: 2147483647 ], # OPTIONAL DbName => 'MyString', # OPTIONAL DurationSeconds => 1, # OPTIONAL ); # Results: my $DbPassword = $ClusterCredentials->DbPassword; my $DbUser = $ClusterCredentials->DbUser; my $Expiration = $ClusterCredentials->Expiration; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 AutoCreate => Bool Create a database user with the name specified for the user named in C if one does not exist. =head2 B ClusterIdentifier => Str The unique identifier of the cluster that contains the database for which your are requesting credentials. This parameter is case sensitive. =head2 DbGroups => ArrayRef[Str|Undef] A list of the names of existing database groups that the user named in C will join for the current session, in addition to any group memberships for an existing user. If not specified, a new user is added only to PUBLIC. Database group name constraints =over =item * Must be 1 to 64 alphanumeric characters or hyphens =item * Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. =item * First character must be a letter. =item * Must not contain a colon ( : ) or slash ( / ). =item * Cannot be a reserved word. A list of reserved words can be found in Reserved Words (http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) in the Amazon Redshift Database Developer Guide. =back =head2 DbName => Str The name of a database that C is authorized to log on to. If C is not specified, C can log on to any existing database. Constraints: =over =item * Must be 1 to 64 alphanumeric characters or hyphens =item * Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. =item * First character must be a letter. =item * Must not contain a colon ( : ) or slash ( / ). =item * Cannot be a reserved word. A list of reserved words can be found in Reserved Words (http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) in the Amazon Redshift Database Developer Guide. =back =head2 B DbUser => Str The name of a database user. If a user name matching C exists in the database, the temporary user credentials have the same permissions as the existing user. If C doesn't exist in the database and C is C, a new user is created using the value for C with PUBLIC permissions. If a database user matching the value for C doesn't exist and C is C, then the command succeeds but the connection attempt will fail because the user doesn't exist in the database. For more information, see CREATE USER (https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html) in the Amazon Redshift Database Developer Guide. Constraints: =over =item * Must be 1 to 64 alphanumeric characters or hyphens. The user name can't be C. =item * Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. =item * First character must be a letter. =item * Must not contain a colon ( : ) or slash ( / ). =item * Cannot be a reserved word. A list of reserved words can be found in Reserved Words (http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html) in the Amazon Redshift Database Developer Guide. =back =head2 DurationSeconds => Int The number of seconds until the returned temporary password expires. Constraint: minimum 900, maximum 3600. Default: 900 =head1 SEE ALSO This class forms part of L, documenting arguments for method GetClusterCredentials in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut