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

ModifyManagedPrefixListRequest

import type { ModifyManagedPrefixListRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface ModifyManagedPrefixListRequest {
AddEntries?: AddPrefixListEntry[] | null;
CurrentVersion?: number | null;
DryRun?: boolean | null;
MaxEntries?: number | null;
PrefixListId: string;
PrefixListName?: string | null;
RemoveEntries?: RemovePrefixListEntry[] | null;
}

§Properties

§
AddEntries?: AddPrefixListEntry[] | null
[src]

One or more entries to add to the prefix list.

§
CurrentVersion?: number | null
[src]

The current version of the prefix list.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
MaxEntries?: number | null
[src]

The maximum number of entries for the prefix list. You cannot modify the entries of a prefix list and modify the size of a prefix list at the same time.

If any of the resources that reference the prefix list cannot support the new maximum size, the modify operation fails. Check the state message for the IDs of the first ten resources that do not support the new maximum size.

§
PrefixListId: string
[src]

The ID of the prefix list.

§
PrefixListName?: string | null
[src]

A name for the prefix list.

§
RemoveEntries?: RemovePrefixListEntry[] | null
[src]

One or more entries to remove from the prefix list.