/** *

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

*/ export interface _ReusableDelegationSetLimit { /** *

The limit that you requested: MAX_ZONES_BY_REUSABLE_DELEGATION_SET, the maximum number of hosted zones that you can associate with the specified reusable delegation set.

*/ Type: "MAX_ZONES_BY_REUSABLE_DELEGATION_SET" | string; /** *

The current value for the MAX_ZONES_BY_REUSABLE_DELEGATION_SET limit.

*/ Value: number; } export declare type _UnmarshalledReusableDelegationSetLimit = _ReusableDelegationSetLimit;