Amazon Redshift will no longer support the use of Python UDFs after June 30, 2026.
We will start enforcing it in phases. For more information on the details of Python end of life
and migration options, see the
blog post
SVV_IDENTITY_PROVIDERS
The SVV_IDENTITY_PROVIDERS view returns the name and additional properties for identity providers. For more information about how to create an identity provider, see CREATE IDENTITY PROVIDER.
SVV_IDENTITY_PROVIDERS is visible only to superusers. For more information, see Visibility of data in system tables and views.
Table columns
| Column name | Data type | Description |
|---|---|---|
| uid | integer | The unique ID of the registered identity provider. |
| name | text | The identity provider name. |
| type | text | The identity provider type. |
| instanceid | text | The unique differentiator between instances of the same type. |
| namespc | text | The namespace prefix of the identity provider. |
| params | text | The JSON object with parameters for the identity provider. |
| enabled | bool | Indicates if the identity provider is enabled. |
Sample queries
To view identity provider properties, run a query like the following after creating identity providers.
SELECT name, type, instanceid, namespc, params, enabled FROM svv_identity_providers ORDER BY 1;
The sample output includes param descriptions for Microsoft Entra ID (formerly Azure AD):
name | type | instanceid | namespc | params | enabled ------------------+-------+--------------------------------------+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------- rs5517_azure_idp | azure | e40d4bb2-7670-44ae-bfb8-5db013221d73 | abc | {"issuer":"https://login.microsoftonline.com/e40d4bb2-7670-44ae-bfb8-5db013221d73/v2.0", "client_id":"871c010f-5e61-4fb1-83ac-98610a7e9110", "client_secret":, "audience":["https://analysis.windows.net/powerbi/connector/AmazonRedshift", "https://analysis.windows.net/powerbi/connector/AWSRDS"]} | t (1 row)
The sample output includes param descriptions for Amazon IAM Identity Center:
name | type | instanceid | namespc | params | enabled ----------+--------+------------------------------------------------------------------------------------+------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+--------- idc_name | awsidc | arn:aws:sso::123456789012:application/ssoins-12345f67fe123d4/apl-a0b0a12dc123b1a4 | idc_namespc | {"iam_role":"arn:aws:iam::123456789012:role/MyRedshiftRole","instance_arn":"arn:aws:sso:::instance/ssoins-12345f67fe123d4","is_lakehouse_app":"true"} | t (1 row)