Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListDistributionsByWebACLIdRequest

import type { ListDistributionsByWebACLIdRequest } from "https://aws-api.deno.dev/v0.4/services/cloudfront.ts?docs=full";

The request to list distributions that are associated with a specified WAF web ACL.

interface ListDistributionsByWebACLIdRequest {
Marker?: string | null;
MaxItems?: string | null;
WebACLId: string;
}

§Properties

§
Marker?: string | null
[src]

Use Marker and MaxItems to control pagination of results. If you have more than MaxItems distributions that satisfy the request, the response includes a NextMarker element. To get the next page of results, submit another request. For the value of Marker, specify the value of NextMarker from the last response. (For the first request, omit Marker.)

§
MaxItems?: string | null
[src]

The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.

§
WebACLId: string
[src]

The ID of the WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL.