Skip to main content

cluster_credentials_with_iams

Creates, updates, deletes, gets or lists a cluster_credentials_with_iams resource.

Overview

Namecluster_credentials_with_iams
TypeResource
Idaws.redshift.cluster_credentials_with_iams

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
db_passwordstringA temporary password that you provide when you connect to a database.
db_userstringA database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity.
expirationstringThe time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.
next_refresh_timestringReserved for future use.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cluster_credentials_with_iamselectregionDbName, ClusterIdentifier, DurationSeconds, CustomDomainNameReturns 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
ClusterIdentifierstringThe unique identifier of the cluster that contains the database for which you are requesting credentials.
CustomDomainNamestringThe custom domain name for the IAM message cluster credentials.
DbNamestringThe 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.
DurationSecondsintegerThe number of seconds until the returned temporary password expires. Range: 900-3600. Default: 900.

SELECT examples

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.

SELECT
db_password,
db_user,
expiration,
next_refresh_time
FROM aws.redshift.cluster_credentials_with_iams
WHERE region = '{{ region }}' -- required
AND DbName = '{{ DbName }}'
AND ClusterIdentifier = '{{ ClusterIdentifier }}'
AND DurationSeconds = '{{ DurationSeconds }}'
AND CustomDomainName = '{{ CustomDomainName }}'
;