connection_group_by_routing_endpoints
Creates, updates, deletes, gets or lists a connection_group_by_routing_endpoints resource.
Overview
| Name | connection_group_by_routing_endpoints |
| Type | Resource |
| Id | aws.cloudfront.connection_group_by_routing_endpoints |
Fields
The following fields are returned by SELECT queries:
- get_connection_group_by_routing_endpoint
| Name | Datatype | Description |
|---|---|---|
connection_group | string | The 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_tag | string | The current version of the connection group. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_connection_group_by_routing_endpoint | select | RoutingEndpoint, region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
RoutingEndpoint | string | The routing endpoint for the target connection group, such as d111111abcdef8.cloudfront.net. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_connection_group_by_routing_endpoint
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
;