Skip to main content

operation_details

Creates, updates, deletes, gets or lists an operation_details resource.

Overview

Nameoperation_details
TypeResource
Idaws.route53domains.operation_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
domain_namestringThe name of a domain.
last_updated_datestring (date-time)The date when the operation was last updated.
messagestringDetailed information on the status including possible errors.
operation_idstringThe identifier for the operation.
statusstringThe current status of the requested operation in the system. (SUBMITTED, IN_PROGRESS, ERROR, SUCCESSFUL, FAILED)
status_flagstringLists 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_datestring (date-time)The date when the request was submitted.
typestringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_operation_detailselectregionThis 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;