Class: Aws::Redshift::Types::ClusterExtendedCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::ClusterExtendedCredentials
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:db_password]
Instance Attribute Summary collapse
-
#db_password ⇒ String
A temporary password that you provide when you connect to a database.
-
#db_user ⇒ String
A database user name that you provide when you connect to a database.
-
#expiration ⇒ Time
The time (UTC) when the temporary password expires.
-
#next_refresh_time ⇒ Time
Reserved for future use.
Instance Attribute Details
#db_password ⇒ String
A temporary password that you provide when you connect to a database.
1147 1148 1149 1150 1151 1152 1153 1154 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1147 class ClusterExtendedCredentials < Struct.new( :db_user, :db_password, :expiration, :next_refresh_time) SENSITIVE = [:db_password] include Aws::Structure end |
#db_user ⇒ String
A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity.
1147 1148 1149 1150 1151 1152 1153 1154 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1147 class ClusterExtendedCredentials < Struct.new( :db_user, :db_password, :expiration, :next_refresh_time) SENSITIVE = [:db_password] include Aws::Structure end |
#expiration ⇒ Time
The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.
1147 1148 1149 1150 1151 1152 1153 1154 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1147 class ClusterExtendedCredentials < Struct.new( :db_user, :db_password, :expiration, :next_refresh_time) SENSITIVE = [:db_password] include Aws::Structure end |
#next_refresh_time ⇒ Time
Reserved for future use.
1147 1148 1149 1150 1151 1152 1153 1154 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 1147 class ClusterExtendedCredentials < Struct.new( :db_user, :db_password, :expiration, :next_refresh_time) SENSITIVE = [:db_password] include Aws::Structure end |