aws.redshift.get_cluster_credentials_with_iam
Example SQL Queries
SELECT * FROMaws.redshift.get_cluster_credentials_with_iam;Description
Returns a database user name and temporary password with temporary authorization to log in to an Amazon Redshift database. The database user is mapped 1:1 to the source Identity and Access Management (IAM) identity. For more information about IAM identities, see IAM Identities (users, user groups, and roles) in the Amazon Web Services Identity and Access Management User Guide.
The Identity and Access Management (IAM) identity that runs this operation must have an IAM policy attached that allows access to all necessary actions and resources. For more information about permissions, see Using identity-based policies (IAM policies) in the Amazon Redshift Cluster Management Guide.
Table Definition
| Column Name | Column Data Type |
|---|---|
| cluster_identifier Input Column The unique identifier of the cluster that contains the database for which you are requesting credentials. | VARCHAR |
| custom_domain_name Input Column The custom domain name for the IAM message cluster credentials. | VARCHAR |
| db_name Input Column The name of the database for which you are requesting credentials. If the database name is specified, the IAM policy must allow access to the resource dbname for the specified database name. If the database name is not specified, access to all databases is allowed. | VARCHAR |
| duration_seconds Input Column The number of seconds until the returned temporary password expires. Range: 900-3600. Default: 900. | BIGINT |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| db_password A temporary password that you provide when you connect to a database. | VARCHAR |
| db_user 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. | VARCHAR |
| expiration The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails. | TIMESTAMP_S |
| next_refresh_time Reserved for future use. | TIMESTAMP_S |