operation_details
Creates, updates, deletes, gets or lists an operation_details resource.
Overview
| Name | operation_details |
| Type | Resource |
| Id | aws.route53domains.operation_details |
Fields
The following fields are returned by SELECT queries:
- get_operation_detail
| Name | Datatype | Description |
|---|---|---|
domain_name | string | The name of a domain. |
last_updated_date | string (date-time) | The date when the operation was last updated. |
message | string | Detailed information on the status including possible errors. |
operation_id | string | The identifier for the operation. |
status | string | The current status of the requested operation in the system. (SUBMITTED, IN_PROGRESS, ERROR, SUCCESSFUL, FAILED) |
status_flag | string | Lists any outstanding operations that require customer action. Valid values are: PENDING_ACCEPTANCE: The operation is waiting for acceptance from the account that is receiving the domain. PENDING_CUSTOMER_ACTION: The operation is waiting for customer action, for example, returning an email. PENDING_AUTHORIZATION: The operation is waiting for the form of authorization. For more information, see ResendOperationAuthorization. PENDING_PAYMENT_VERIFICATION: The operation is waiting for the payment method to validate. PENDING_SUPPORT_CASE: The operation includes a support case and is waiting for its resolution. (PENDING_ACCEPTANCE, PENDING_CUSTOMER_ACTION, PENDING_AUTHORIZATION, PENDING_PAYMENT_VERIFICATION, PENDING_SUPPORT_CASE) |
submitted_date | string (date-time) | The date when the request was submitted. |
type | string | The type of operation that was requested. (REGISTER_DOMAIN, DELETE_DOMAIN, TRANSFER_IN_DOMAIN, UPDATE_DOMAIN_CONTACT, UPDATE_NAMESERVER, CHANGE_PRIVACY_PROTECTION, DOMAIN_LOCK, ENABLE_AUTORENEW, DISABLE_AUTORENEW, ADD_DNSSEC, REMOVE_DNSSEC, EXPIRE_DOMAIN, TRANSFER_OUT_DOMAIN, CHANGE_DOMAIN_OWNER, RENEW_DOMAIN, PUSH_DOMAIN, INTERNAL_TRANSFER_OUT_DOMAIN, INTERNAL_TRANSFER_IN_DOMAIN, RELEASE_TO_GANDI, TRANSFER_ON_RENEW, RESTORE_DOMAIN) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_operation_detail | select | region | This operation returns the current status of an operation that is not completed. |
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_operation_detail
This operation returns the current status of an operation that is not completed.
SELECT
domain_name,
last_updated_date,
message,
operation_id,
status,
status_flag,
submitted_date,
type
FROM aws.route53domains.operation_details
WHERE region = '{{ region }}' -- required
;