Skip to main content

subscription_request_details

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

Overview

Namesubscription_request_details
TypeResource
Idaws.datazone.subscription_request_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe identifier of the subscription request. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>)
created_atstring (date-time)The timestamp of when the specified subscription request was created.
created_bystringThe Amazon DataZone user who created the subscription request.
decision_commentstringThe decision comment of the subscription request.
domain_idstringThe Amazon DataZone domain of the subscription request. (pattern: <code>dzd[-][a-zA-Z0-9-]{1,36}</code>)
existing_subscription_idstringThe ID of the existing subscription. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>)
metadata_formsarrayThe metadata forms included in the subscription request.
request_reasonstringThe reason for the subscription request.
reviewer_idstringThe identifier of the Amazon DataZone user who reviewed the subscription request.
statusstringThe status of the subscription request. (PENDING, ACCEPTED, REJECTED)
subscribed_listingsarrayThe subscribed listings in the subscription request.
subscribed_principalsarrayThe subscribed principals in the subscription request.
updated_atstring (date-time)The timestamp of when the subscription request was updated.
updated_bystringThe Amazon DataZone user who updated the subscription request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_subscription_request_detailsselectdomain_identifier, identifier, regionGets 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.

NameDatatypeDescription
domain_identifierstringThe identifier of the Amazon DataZone domain in which to get the subscription request details.
identifierstringThe identifier of the subscription request the details of which to get.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;