Skip to main content

distribution_tenant_by_domains

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

Overview

Namedistribution_tenant_by_domains
TypeResource
Idaws.cloudfront.distribution_tenant_by_domains

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
distribution_tenantstringThe distribution tenant.
e_tagstringThe current version of the distribution tenant.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_distribution_tenant_by_domainselectdomain, regionGets information about a distribution tenant by the associated domain.

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
domainstringA domain name associated with the target distribution tenant.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets information about a distribution tenant by the associated domain.

SELECT
distribution_tenant,
e_tag
FROM aws.cloudfront.distribution_tenant_by_domains
WHERE domain = '{{ domain }}' -- required
AND region = '{{ region }}' -- required
;