Skip to main content

registration_type_definitions

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

Overview

Nameregistration_type_definitions
TypeResource
Idaws.pinpoint_sms_voice_v2.registration_type_definitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
display_hintsobjectProvides help information on the registration.
registration_typestringThe type of registration form. The list of RegistrationTypes can be found using the DescribeRegistrationTypeDefinitions action. (pattern: <code>[A-Za-z0-9_]+</code>)
supported_associationsarrayThe supported association behavior for the registration type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_registration_type_definitionsselectregionRetrieves the specified registration type definitions. You can use DescribeRegistrationTypeDefinitions to view the requirements for creating, filling out, and submitting each registration type.

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)

SELECT examples

Retrieves the specified registration type definitions. You can use DescribeRegistrationTypeDefinitions to view the requirements for creating, filling out, and submitting each registration type.

SELECT
display_hints,
registration_type,
supported_associations
FROM aws.pinpoint_sms_voice_v2.registration_type_definitions
WHERE region = '{{ region }}' -- required
;