Skip to main content

distribution_tenants_by_customizations

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

Overview

Namedistribution_tenants_by_customizations
TypeResource
Idaws.cloudfront.distribution_tenants_by_customizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the distribution tenant.
connection_group_idstringThe ID of the connection group ID for the distribution tenant. If you don't specify a connection group, CloudFront uses the default connection group.
created_timestringThe date and time when the distribution tenant was created.
customizationsstringCustomizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
distribution_idstringThe identifier for the multi-tenant distribution. For example: EDFDVBD632BHDS5.
domainsstringThe domains associated with the distribution tenant.
e_tagstringThe current version of the distribution tenant.
enabledbooleanIndicates whether the distribution tenants are in an enabled state. If disabled, the distribution tenant won't service traffic.
idstringThe ID of the distribution tenant.
last_modified_timestringThe date and time when the distribution tenant was updated.
namestringThe name of the distribution tenant.
statusstringThe status of the distribution tenant.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_distribution_tenants_by_customizationselectregionLists distribution tenants by the customization that you specify. You must specify either the CertificateArn parameter or WebACLArn parameter, but not both in the same request.

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

Lists distribution tenants by the customization that you specify. You must specify either the CertificateArn parameter or WebACLArn parameter, but not both in the same request.

SELECT
arn,
connection_group_id,
created_time,
customizations,
distribution_id,
domains,
e_tag,
enabled,
id,
last_modified_time,
name,
status
FROM aws.cloudfront.distribution_tenants_by_customizations
WHERE region = '{{ region }}' -- required
;