libZSservicesZSamazonka-route53ZSamazonka-route53
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Route53.Types.HostedZoneLimit

Description

 
Synopsis

Documentation

data HostedZoneLimit Source #

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

See: newHostedZoneLimit smart constructor.

Constructors

HostedZoneLimit' 

Fields

  • type' :: HostedZoneLimitType

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

    • MAX_RRSETS_BY_ZONE: The maximum number of records that you can create in the specified hosted zone.
    • MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.
  • value :: Natural

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

Instances

Instances details
Eq HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

Read HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

Show HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

Generic HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

Associated Types

type Rep HostedZoneLimit :: Type -> Type #

NFData HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

Methods

rnf :: HostedZoneLimit -> () #

Hashable HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

FromXML HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

type Rep HostedZoneLimit Source # 
Instance details

Defined in Amazonka.Route53.Types.HostedZoneLimit

type Rep HostedZoneLimit = D1 ('MetaData "HostedZoneLimit" "Amazonka.Route53.Types.HostedZoneLimit" "libZSservicesZSamazonka-route53ZSamazonka-route53" 'False) (C1 ('MetaCons "HostedZoneLimit'" 'PrefixI 'True) (S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 HostedZoneLimitType) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))

newHostedZoneLimit Source #

Create a value of HostedZoneLimit with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:type':HostedZoneLimit', hostedZoneLimit_type - The limit that you requested. Valid values include the following:

  • MAX_RRSETS_BY_ZONE: The maximum number of records that you can create in the specified hosted zone.
  • MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.

$sel:value:HostedZoneLimit', hostedZoneLimit_value - The current value for the limit that is specified by Type.

hostedZoneLimit_type :: Lens' HostedZoneLimit HostedZoneLimitType Source #

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

  • MAX_RRSETS_BY_ZONE: The maximum number of records that you can create in the specified hosted zone.
  • MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.

hostedZoneLimit_value :: Lens' HostedZoneLimit Natural Source #

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