Skip to main content

domain_verifications

Creates, updates, deletes, gets or lists a domain_verifications resource.

Overview

Namedomain_verifications
TypeResource
Idaws.vpc_lattice.domain_verifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the domain verification. (pattern: <code>dv-[a-fA-F0-9]{17}</code>)
arnstringThe Amazon Resource Name (ARN) of the domain verification. (pattern: <code>arn:[a-z0-9f-]+:vpc-lattice:[a-zA-Z0-9-]+:\d{12}:domainverification/dv-[a-fA-F0-9]{17}</code>)
created_atstring (date-time)The date and time that the domain verification was created, in ISO-8601 format.
domain_namestringThe domain name being verified.
last_verified_timestring (date-time)The date and time that the domain was last successfully verified, in ISO-8601 format.
statusstringThe current status of the domain verification process. (VERIFIED, PENDING, VERIFICATION_TIMED_OUT)
tagsobjectThe tags associated with the domain verification.
txt_method_configobjectThe TXT record configuration used for domain verification.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_domain_verificationselectdomain_verification_identifier, regionRetrieves information about a domain verification.ß
list_domain_verificationsselectregionmaxResults, nextTokenLists the domain verifications.
delete_domain_verificationdeletedomain_verification_identifier, regionDeletes the specified domain verification.

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
domain_verification_identifierstringThe ID of the domain verification to delete.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return.
nextTokenstringA pagination token for the next page of results.

SELECT examples

Retrieves information about a domain verification.ß

SELECT
id,
arn,
created_at,
domain_name,
last_verified_time,
status,
tags,
txt_method_config
FROM aws.vpc_lattice.domain_verifications
WHERE domain_verification_identifier = '{{ domain_verification_identifier }}' -- required
AND region = '{{ region }}' -- required
;

DELETE examples

Deletes the specified domain verification.

DELETE FROM aws.vpc_lattice.domain_verifications
WHERE domain_verification_identifier = '{{ domain_verification_identifier }}' --required
AND region = '{{ region }}' --required
;