Struct rusoto_route53::GetHostedZoneLimitRequest[][src]

pub struct GetHostedZoneLimitRequest {
    pub hosted_zone_id: String,
    pub type_: String,
}

A complex type that contains information about the request to create a hosted zone.

Fields

The ID of the hosted zone that you want to get a limit for.

The limit that you want to get. Valid values include the following:

  • MAXRRSETSBYZONE: The maximum number of records that you can create in the specified hosted zone.

  • MAXVPCSASSOCIATEDBY_ZONE: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.

Trait Implementations

impl Default for GetHostedZoneLimitRequest
[src]

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

impl Debug for GetHostedZoneLimitRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetHostedZoneLimitRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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