iam_portal_login_urls
Creates, updates, deletes, gets or lists an iam_portal_login_urls resource.
Overview
| Name | iam_portal_login_urls |
| Type | Resource |
| Id | aws.datazone.iam_portal_login_urls |
Fields
The following fields are returned by SELECT queries:
- get_iam_portal_login_url
| Name | Datatype | Description |
|---|---|---|
auth_code_url | string | The data portal URL of the specified Amazon DataZone domain. |
user_profile_id | string | The ID of the user profile. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_iam_portal_login_url | select | domain_identifier, region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
domain_identifier | string | the ID of the Amazon DataZone domain the data portal of which you want to get. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_iam_portal_login_url
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
;