registration_type_definitions
Creates, updates, deletes, gets or lists a registration_type_definitions resource.
Overview
| Name | registration_type_definitions |
| Type | Resource |
| Id | aws.pinpoint_sms_voice_v2.registration_type_definitions |
Fields
The following fields are returned by SELECT queries:
- describe_registration_type_definitions
| Name | Datatype | Description |
|---|---|---|
display_hints | object | Provides help information on the registration. |
registration_type | string | The type of registration form. The list of RegistrationTypes can be found using the DescribeRegistrationTypeDefinitions action. (pattern: <code>[A-Za-z0-9_]+</code>) |
supported_associations | array | The supported association behavior for the registration type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_registration_type_definitions | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_registration_type_definitions
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
;