distributions_by_trust_stores
Creates, updates, deletes, gets or lists a distributions_by_trust_stores resource.
Overview
| Name | distributions_by_trust_stores |
| Type | Resource |
| Id | aws.cloudfront.distributions_by_trust_stores |
Fields
The following fields are returned by SELECT queries:
- list_distributions_by_trust_store
| 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_trust_store | select | TrustStoreIdentifier, region | Marker, MaxItems | Lists distributions by trust store. |
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 |
|---|---|---|
TrustStoreIdentifier | string | The distributions by trust store identifier. |
region | string | AWS region (default: us-east-1) |
Marker | string | Use 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. |
MaxItems | string | The maximum number of distributions that you want returned in the response. |
SELECT examples
- list_distributions_by_trust_store
Lists distributions by trust store.
SELECT
is_truncated,
items,
marker,
max_items,
next_marker,
quantity
FROM aws.cloudfront.distributions_by_trust_stores
WHERE TrustStoreIdentifier = '{{ TrustStoreIdentifier }}' -- required
AND region = '{{ region }}' -- required
AND Marker = '{{ Marker }}'
AND MaxItems = '{{ MaxItems }}'
;