/** *

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

*/ export interface _AccountLimit { /** *

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

*/ Type: "MAX_HEALTH_CHECKS_BY_OWNER" | "MAX_HOSTED_ZONES_BY_OWNER" | "MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER" | "MAX_REUSABLE_DELEGATION_SETS_BY_OWNER" | "MAX_TRAFFIC_POLICIES_BY_OWNER" | string; /** *

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

*/ Value: number; } export declare type _UnmarshalledAccountLimit = _AccountLimit;