/** *

Contains the identifier and the name of the IPSet.

*/ export interface _IPSetSummary { /** *

The IPSetId for an IPSet. You can use IPSetId in a GetIPSet request to get detailed information about an IPSet.

*/ IPSetId: string; /** *

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

*/ Name: string; } export declare type _UnmarshalledIPSetSummary = _IPSetSummary;