Skip to main content

type_registrations

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

Overview

Nametype_registrations
TypeResource
Idaws.cloudformation.type_registrations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
line_itemsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_type_registrationselectRegistrationToken, regionReturns information about an extension's registration, including its current status and type and version identifiers. When you initiate a registration request using RegisterType, you can then use DescribeTypeRegistration to monitor the progress of that registration request. Once the registration request has completed, use DescribeType to return detailed information about an extension.
list_type_registrationsselectregionType, TypeName, TypeArn, RegistrationStatusFilter, MaxResults, NextTokenReturns a list of registration tokens for the specified extension(s).

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
RegistrationTokenstringThe identifier for this registration request. This registration token is generated by CloudFormation when you initiate a registration request using RegisterType.
regionstringAWS region (default: us-east-1)
MaxResultsintegerThe maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.
NextTokenstringThe token for the next set of items to return. (You received this token from a previous call.)
RegistrationStatusFilterstringThe current status of the extension registration request. The default is IN_PROGRESS.
TypestringThe kind of extension. Conditional: You must specify either TypeName and Type, or Arn.
TypeArnstringThe Amazon Resource Name (ARN) of the extension. Conditional: You must specify either TypeName and Type, or Arn.
TypeNamestringThe name of the extension. Conditional: You must specify either TypeName and Type, or Arn.

SELECT examples

Returns information about an extension's registration, including its current status and type and version identifiers. When you initiate a registration request using RegisterType, you can then use DescribeTypeRegistration to monitor the progress of that registration request. Once the registration request has completed, use DescribeType to return detailed information about an extension.

SELECT
line_items
FROM aws.cloudformation.type_registrations
WHERE RegistrationToken = '{{ RegistrationToken }}' -- required
AND region = '{{ region }}' -- required
;