Struct rusoto_route53::GetHostedZoneLimitResponse[][src]

pub struct GetHostedZoneLimitResponse {
    pub count: i64,
    pub limit: HostedZoneLimit,
}

A complex type that contains the requested limit.

Fields

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.

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.

Trait Implementations

impl Default for GetHostedZoneLimitResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for GetHostedZoneLimitResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetHostedZoneLimitResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetHostedZoneLimitResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations