distributions_by_realtime_log_configs
Creates, updates, deletes, gets or lists a distributions_by_realtime_log_configs resource.
Overview
| Name | distributions_by_realtime_log_configs |
| Type | Resource |
| Id | aws.cloudfront.distributions_by_realtime_log_configs |
Fields
The following fields are returned by SELECT queries:
- list_distributions_by_realtime_log_config
| Name | Datatype | Description |
|---|---|---|
is_truncated | boolean | A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker request parameter to retrieve more distributions in the list. |
items | string | A complex type that contains one DistributionSummary element for each distribution that was created by the current Amazon Web Services account. |
marker | string | The value you provided for the Marker request parameter. |
max_items | integer | The value you provided for the MaxItems request parameter. |
next_marker | string | If IsTruncated is true, this element is present and contains the value you can use for the Marker request parameter to continue listing your distributions where they left off. |
quantity | integer | The number of distributions that were created by the current Amazon Web Services account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_distributions_by_realtime_log_config | select | region | Gets a list of distributions that have a cache behavior that's associated with the specified real-time log configuration. You can specify the real-time log configuration by its name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to list distributions for. You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_distributions_by_realtime_log_config
Gets a list of distributions that have a cache behavior that's associated with the specified real-time log configuration. You can specify the real-time log configuration by its name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to list distributions for. You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.
SELECT
is_truncated,
items,
marker,
max_items,
next_marker,
quantity
FROM aws.cloudfront.distributions_by_realtime_log_configs
WHERE region = '{{ region }}' -- required
;