Struct rusoto_route53::GetAccountLimitResponse[][src]

pub struct GetAccountLimitResponse {
    pub count: i64,
    pub limit: AccountLimit,
}

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_HEALTH_CHECKS_BY_OWNER for the value of Type in the request, the value of Count is the current number of health checks that you have created using the current account.

The current setting for the specified limit. For example, if you specified MAX_HEALTH_CHECKS_BY_OWNER for the value of Type in the request, the value of Limit is the maximum number of health checks that you can create using the current account.

Trait Implementations

impl Default for GetAccountLimitResponse
[src]

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

impl Debug for GetAccountLimitResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetAccountLimitResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetAccountLimitResponse
[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