/** *

A complex type that contains the type of limit that you specified in the request and the current value for that limit.

*/ export interface _HostedZoneLimit { /** *

The limit that you requested. Valid values include the following:

*/ Type: "MAX_RRSETS_BY_ZONE" | "MAX_VPCS_ASSOCIATED_BY_ZONE" | string; /** *

The current value for the limit that is specified by Type.

*/ Value: number; } export declare type _UnmarshalledHostedZoneLimit = _HostedZoneLimit;