Class: Aws::Redshift::Types::ClusterCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ClusterCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Temporary credentials with authorization to log in to an Amazon Redshift database.
Instance Attribute Summary collapse
-
#db_password ⇒ String
A temporary password that authorizes the user name returned by
DbUserto log on to the databaseDbName. -
#db_user ⇒ String
A database user name that is authorized to log on to the database
DbNameusing the passwordDbPassword. -
#expiration ⇒ Time
The date and time
DbPasswordexpires.
Instance Attribute Details
#db_password ⇒ String
A temporary password that authorizes the user name returned by DbUser to log on to the database DbName.
418 419 420 421 422 423 |
# File 'lib/aws-sdk-redshift/types.rb', line 418 class ClusterCredentials < Struct.new( :db_user, :db_password, :expiration) include Aws::Structure end |
#db_user ⇒ String
A database user name that is authorized to log on to the database DbName using the password DbPassword. If the DbGroups parameter is specifed, DbUser is added to the listed groups for the current session. The user name is prefixed with IAM: for an existing user name or IAMA: if the user was auto-created.
418 419 420 421 422 423 |
# File 'lib/aws-sdk-redshift/types.rb', line 418 class ClusterCredentials < Struct.new( :db_user, :db_password, :expiration) include Aws::Structure end |
#expiration ⇒ Time
The date and time DbPassword expires.
418 419 420 421 422 423 |
# File 'lib/aws-sdk-redshift/types.rb', line 418 class ClusterCredentials < Struct.new( :db_user, :db_password, :expiration) include Aws::Structure end |