Skip to main content

connection_group_by_routing_endpoints

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

Overview

Nameconnection_group_by_routing_endpoints
TypeResource
Idaws.cloudfront.connection_group_by_routing_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
connection_groupstringThe connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant.
e_tagstringThe current version of the connection group.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_connection_group_by_routing_endpointselectRoutingEndpoint, regionGets information about a connection group by using the endpoint that you specify.

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
RoutingEndpointstringThe routing endpoint for the target connection group, such as d111111abcdef8.cloudfront.net.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets information about a connection group by using the endpoint that you specify.

SELECT
connection_group,
e_tag
FROM aws.cloudfront.connection_group_by_routing_endpoints
WHERE RoutingEndpoint = '{{ RoutingEndpoint }}' -- required
AND region = '{{ region }}' -- required
;