Skip to main content

iam_portal_login_urls

Creates, updates, deletes, gets or lists an iam_portal_login_urls resource.

Overview

Nameiam_portal_login_urls
TypeResource
Idaws.datazone.iam_portal_login_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
auth_code_urlstringThe data portal URL of the specified Amazon DataZone domain.
user_profile_idstringThe ID of the user profile.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_iam_portal_login_urlselectdomain_identifier, regionGets the data portal URL for the specified Amazon DataZone domain.

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
domain_identifierstringthe ID of the Amazon DataZone domain the data portal of which you want to get.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the data portal URL for the specified Amazon DataZone domain.

SELECT
auth_code_url,
user_profile_id
FROM aws.datazone.iam_portal_login_urls
WHERE domain_identifier = '{{ domain_identifier }}' -- required
AND region = '{{ region }}' -- required
;