Skip to main content

domains

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

Overview

Namedomains
TypeResource
Idaws.controlcatalog.domains

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) that identifies the domain. (pattern: <code>arn:(aws(?:[-a-z]*)?):controlcatalog:::domain/[0-9a-z]+</code>)
create_timestring (date-time)The time when the domain was created.
descriptionstringThe description of the domain.
last_update_timestring (date-time)The time when the domain was most recently updated.
namestringThe name of the domain.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_domainsselectregionmaxResults, nextTokenReturns a paginated list of domains from the Control Catalog.

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
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results on a page or for an API request call.
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

Returns a paginated list of domains from the Control Catalog.

SELECT
arn,
create_time,
description,
last_update_time,
name
FROM aws.controlcatalog.domains
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;