subscription_request_details
Creates, updates, deletes, gets or lists a subscription_request_details resource.
Overview
| Name | subscription_request_details |
| Type | Resource |
| Id | aws.datazone.subscription_request_details |
Fields
The following fields are returned by SELECT queries:
- get_subscription_request_details
| Name | Datatype | Description |
|---|---|---|
id | string | The identifier of the subscription request. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>) |
created_at | string (date-time) | The timestamp of when the specified subscription request was created. |
created_by | string | The Amazon DataZone user who created the subscription request. |
decision_comment | string | The decision comment of the subscription request. |
domain_id | string | The Amazon DataZone domain of the subscription request. (pattern: <code>dzd[-][a-zA-Z0-9-]{1,36}</code>) |
existing_subscription_id | string | The ID of the existing subscription. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>) |
metadata_forms | array | The metadata forms included in the subscription request. |
request_reason | string | The reason for the subscription request. |
reviewer_id | string | The identifier of the Amazon DataZone user who reviewed the subscription request. |
status | string | The status of the subscription request. (PENDING, ACCEPTED, REJECTED) |
subscribed_listings | array | The subscribed listings in the subscription request. |
subscribed_principals | array | The subscribed principals in the subscription request. |
updated_at | string (date-time) | The timestamp of when the subscription request was updated. |
updated_by | string | The Amazon DataZone user who updated the subscription request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_subscription_request_details | select | domain_identifier, identifier, region | Gets the details of the specified subscription request. |
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 identifier of the Amazon DataZone domain in which to get the subscription request details. |
identifier | string | The identifier of the subscription request the details of which to get. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_subscription_request_details
Gets the details of the specified subscription request.
SELECT
id,
created_at,
created_by,
decision_comment,
domain_id,
existing_subscription_id,
metadata_forms,
request_reason,
reviewer_id,
status,
subscribed_listings,
subscribed_principals,
updated_at,
updated_by
FROM aws.datazone.subscription_request_details
WHERE domain_identifier = '{{ domain_identifier }}' -- required
AND identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;