Skip to main content

distributions_by_anycast_ip_list_ids

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

Overview

Namedistributions_by_anycast_ip_list_ids
TypeResource
Idaws.cloudfront.distributions_by_anycast_ip_list_ids

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
is_truncatedbooleanA 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.
itemsstringA complex type that contains one DistributionSummary element for each distribution that was created by the current Amazon Web Services account.
markerstringThe value you provided for the Marker request parameter.
max_itemsintegerThe value you provided for the MaxItems request parameter.
next_markerstringIf 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.
quantityintegerThe number of distributions that were created by the current Amazon Web Services account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_distributions_by_anycast_ip_list_idselectanycast_ip_list_id, regionMarker, MaxItemsLists the distributions in your account that are associated with the specified AnycastIpListId.

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
anycast_ip_list_idstringThe ID of the Anycast static IP list.
regionstringAWS region (default: us-east-1)
MarkerstringUse this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.
MaxItemsstringThe maximum number of distributions that you want returned in the response.

SELECT examples

Lists the distributions in your account that are associated with the specified AnycastIpListId.

SELECT
is_truncated,
items,
marker,
max_items,
next_marker,
quantity
FROM aws.cloudfront.distributions_by_anycast_ip_list_ids
WHERE anycast_ip_list_id = '{{ anycast_ip_list_id }}' -- required
AND region = '{{ region }}' -- required
AND Marker = '{{ Marker }}'
AND MaxItems = '{{ MaxItems }}'
;