{-# 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.AccessAnalyzer.Types.Substring -- 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.AccessAnalyzer.Types.Substring 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 -- | A reference to a substring of a literal string in a JSON document. -- -- /See:/ 'newSubstring' smart constructor. data Substring = Substring' { -- | The start index of the substring, starting from 0. start :: Prelude.Int, -- | The length of the substring. length :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Substring' 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: -- -- 'start', 'substring_start' - The start index of the substring, starting from 0. -- -- 'length', 'substring_length' - The length of the substring. newSubstring :: -- | 'start' Prelude.Int -> -- | 'length' Prelude.Int -> Substring newSubstring pStart_ pLength_ = Substring' {start = pStart_, length = pLength_} -- | The start index of the substring, starting from 0. substring_start :: Lens.Lens' Substring Prelude.Int substring_start = Lens.lens (\Substring' {start} -> start) (\s@Substring' {} a -> s {start = a} :: Substring) -- | The length of the substring. substring_length :: Lens.Lens' Substring Prelude.Int substring_length = Lens.lens (\Substring' {length} -> length) (\s@Substring' {} a -> s {length = a} :: Substring) instance Data.FromJSON Substring where parseJSON = Data.withObject "Substring" ( \x -> Substring' Prelude.<$> (x Data..: "start") Prelude.<*> (x Data..: "length") ) instance Prelude.Hashable Substring where hashWithSalt _salt Substring' {..} = _salt `Prelude.hashWithSalt` start `Prelude.hashWithSalt` length instance Prelude.NFData Substring where rnf Substring' {..} = Prelude.rnf start `Prelude.seq` Prelude.rnf length