/** *

Contains the identifier and the name or description of the WebACL.

*/ export interface _WebACLSummary { /** *

A unique identifier for a WebACL. You use WebACLId to get information about a WebACL (see GetWebACL), update a WebACL (see UpdateWebACL), and delete a WebACL from AWS WAF (see DeleteWebACL).

WebACLId is returned by CreateWebACL and by ListWebACLs.

*/ WebACLId: string; /** *

A friendly name or description of the WebACL. You can't change the name of a WebACL after you create it.

*/ Name: string; } export declare type _UnmarshalledWebACLSummary = _WebACLSummary;