verifications
Creates, updates, deletes, gets or lists a verifications resource.
Overview
| Name | verifications |
| Type | Resource |
| Id | aws.partnercentral_account.verifications |
Fields
The following fields are returned by SELECT queries:
- get_verification
| Name | Datatype | Description |
|---|---|---|
completed_at | string (date-time) | The timestamp when the verification process was completed. This field is null if the verification is still in progress. |
started_at | string (date-time) | The timestamp when the verification process was initiated. |
verification_response_details | object | Detailed response information specific to the type of verification performed, including any verification-specific data or results. |
verification_status | string | The current status of the verification process. Possible values include pending, in-progress, completed, failed, or expired. (PENDING_CUSTOMER_ACTION, IN_PROGRESS, FAILED, SUCCEEDED, REJECTED) |
verification_status_reason | string | Additional information explaining the current verification status, particularly useful when the status indicates a failure or requires additional action. (pattern: <code>[\u0020-\u007E\u00A0-\uD7FF\uE000-\uFFFD]+</code>) |
verification_type | string | The type of verification that was requested and processed. (BUSINESS_VERIFICATION, REGISTRANT_VERIFICATION) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_verification | select | region | Retrieves the current status and details of a verification process for a partner account. This operation allows partners to check the progress and results of business or registrant verification processes. |
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
- get_verification
Retrieves the current status and details of a verification process for a partner account. This operation allows partners to check the progress and results of business or registrant verification processes.
SELECT
completed_at,
started_at,
verification_response_details,
verification_status,
verification_status_reason,
verification_type
FROM aws.partnercentral_account.verifications
WHERE region = '{{ region }}' -- required
;