{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Route53.Types.HostedZoneLimit -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.Route53.Types.HostedZoneLimit where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import Amazonka.Route53.Internal import Amazonka.Route53.Types.HostedZoneLimitType -- | 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. data HostedZoneLimit = HostedZoneLimit' { -- | 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. type' :: HostedZoneLimitType, -- | The current value for the limit that is specified by @Type@. value :: Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HostedZoneLimit' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'type'', '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. -- -- 'value', 'hostedZoneLimit_value' - The current value for the limit that is specified by @Type@. newHostedZoneLimit :: -- | 'type'' HostedZoneLimitType -> -- | 'value' Prelude.Natural -> HostedZoneLimit newHostedZoneLimit pType_ pValue_ = HostedZoneLimit' {type' = pType_, value = pValue_} -- | 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_type :: Lens.Lens' HostedZoneLimit HostedZoneLimitType hostedZoneLimit_type = Lens.lens (\HostedZoneLimit' {type'} -> type') (\s@HostedZoneLimit' {} a -> s {type' = a} :: HostedZoneLimit) -- | The current value for the limit that is specified by @Type@. hostedZoneLimit_value :: Lens.Lens' HostedZoneLimit Prelude.Natural hostedZoneLimit_value = Lens.lens (\HostedZoneLimit' {value} -> value) (\s@HostedZoneLimit' {} a -> s {value = a} :: HostedZoneLimit) instance Data.FromXML HostedZoneLimit where parseXML x = HostedZoneLimit' Prelude.<$> (x Data..@ "Type") Prelude.<*> (x Data..@ "Value") instance Prelude.Hashable HostedZoneLimit where hashWithSalt _salt HostedZoneLimit' {..} = _salt `Prelude.hashWithSalt` type' `Prelude.hashWithSalt` value instance Prelude.NFData HostedZoneLimit where rnf HostedZoneLimit' {..} = Prelude.rnf type' `Prelude.seq` Prelude.rnf value