registration_section_definitions
Creates, updates, deletes, gets or lists a registration_section_definitions resource.
Overview
| Name | registration_section_definitions |
| Type | Resource |
| Id | aws.pinpoint_sms_voice_v2.registration_section_definitions |
Fields
The following fields are returned by SELECT queries:
- describe_registration_section_definitions
| Name | Datatype | Description |
|---|---|---|
display_hints | object | The path to the section of the registration. |
section_path | string | The path to the section of the registration. (pattern: <code>[A-Za-z0-9_]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_registration_section_definitions | select | region | Retrieves the specified registration section definitions. You can use DescribeRegistrationSectionDefinitions 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_section_definitions
Retrieves the specified registration section definitions. You can use DescribeRegistrationSectionDefinitions to view the requirements for creating, filling out, and submitting each registration type.
SELECT
display_hints,
section_path
FROM aws.pinpoint_sms_voice_v2.registration_section_definitions
WHERE region = '{{ region }}' -- required
;