import { _UnmarshalledHostedZoneLimit } from "./_HostedZoneLimit"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

A complex type that contains the requested limit.

*/ export interface GetHostedZoneLimitOutput extends __aws_sdk_types.MetadataBearer { /** *

The current setting for the specified limit. For example, if you specified MAX_RRSETS_BY_ZONE for the value of Type in the request, the value of Limit is the maximum number of records that you can create in the specified hosted zone.

*/ Limit: _UnmarshalledHostedZoneLimit; /** *

The current number of entities that you have created of the specified type. For example, if you specified MAX_RRSETS_BY_ZONE for the value of Type in the request, the value of Count is the current number of records that you have created in the specified hosted zone.

*/ Count: number; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }