{-# 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.AppMesh.Types.MatchRange -- 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.AppMesh.Types.MatchRange 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 -- | An object that represents the range of values to match on. The first -- character of the range is included in the range, though the last -- character is not. For example, if the range specified were 1-100, only -- values 1-99 would be matched. -- -- /See:/ 'newMatchRange' smart constructor. data MatchRange = MatchRange' { -- | The end of the range. end :: Prelude.Integer, -- | The start of the range. start :: Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'MatchRange' 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: -- -- 'end', 'matchRange_end' - The end of the range. -- -- 'start', 'matchRange_start' - The start of the range. newMatchRange :: -- | 'end' Prelude.Integer -> -- | 'start' Prelude.Integer -> MatchRange newMatchRange pEnd_ pStart_ = MatchRange' {end = pEnd_, start = pStart_} -- | The end of the range. matchRange_end :: Lens.Lens' MatchRange Prelude.Integer matchRange_end = Lens.lens (\MatchRange' {end} -> end) (\s@MatchRange' {} a -> s {end = a} :: MatchRange) -- | The start of the range. matchRange_start :: Lens.Lens' MatchRange Prelude.Integer matchRange_start = Lens.lens (\MatchRange' {start} -> start) (\s@MatchRange' {} a -> s {start = a} :: MatchRange) instance Data.FromJSON MatchRange where parseJSON = Data.withObject "MatchRange" ( \x -> MatchRange' Prelude.<$> (x Data..: "end") Prelude.<*> (x Data..: "start") ) instance Prelude.Hashable MatchRange where hashWithSalt _salt MatchRange' {..} = _salt `Prelude.hashWithSalt` end `Prelude.hashWithSalt` start instance Prelude.NFData MatchRange where rnf MatchRange' {..} = Prelude.rnf end `Prelude.seq` Prelude.rnf start instance Data.ToJSON MatchRange where toJSON MatchRange' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("end" Data..= end), Prelude.Just ("start" Data..= start) ] )