{-# 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.Pinpoint.Types.SegmentCondition -- 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.Pinpoint.Types.SegmentCondition 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 -- | Specifies a segment to associate with an activity in a journey. -- -- /See:/ 'newSegmentCondition' smart constructor. data SegmentCondition = SegmentCondition' { -- | The unique identifier for the segment to associate with the activity. segmentId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'SegmentCondition' 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: -- -- 'segmentId', 'segmentCondition_segmentId' - The unique identifier for the segment to associate with the activity. newSegmentCondition :: -- | 'segmentId' Prelude.Text -> SegmentCondition newSegmentCondition pSegmentId_ = SegmentCondition' {segmentId = pSegmentId_} -- | The unique identifier for the segment to associate with the activity. segmentCondition_segmentId :: Lens.Lens' SegmentCondition Prelude.Text segmentCondition_segmentId = Lens.lens (\SegmentCondition' {segmentId} -> segmentId) (\s@SegmentCondition' {} a -> s {segmentId = a} :: SegmentCondition) instance Data.FromJSON SegmentCondition where parseJSON = Data.withObject "SegmentCondition" ( \x -> SegmentCondition' Prelude.<$> (x Data..: "SegmentId") ) instance Prelude.Hashable SegmentCondition where hashWithSalt _salt SegmentCondition' {..} = _salt `Prelude.hashWithSalt` segmentId instance Prelude.NFData SegmentCondition where rnf SegmentCondition' {..} = Prelude.rnf segmentId instance Data.ToJSON SegmentCondition where toJSON SegmentCondition' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("SegmentId" Data..= segmentId)] )