{-# 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.Comprehend.Types.TargetedSentimentMention -- 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.Comprehend.Types.TargetedSentimentMention where import Amazonka.Comprehend.Types.MentionSentiment import Amazonka.Comprehend.Types.TargetedSentimentEntityType 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 -- | Information about one mention of an entity. The mention information -- includes the location of the mention in the text and the sentiment of -- the mention. -- -- For more information about targeted sentiment, see -- . -- -- /See:/ 'newTargetedSentimentMention' smart constructor. data TargetedSentimentMention = TargetedSentimentMention' { -- | The offset into the document text where the mention begins. beginOffset :: Prelude.Maybe Prelude.Int, -- | The offset into the document text where the mention ends. endOffset :: Prelude.Maybe Prelude.Int, -- | The confidence that all the entities mentioned in the group relate to -- the same entity. groupScore :: Prelude.Maybe Prelude.Double, -- | Contains the sentiment and sentiment score for the mention. mentionSentiment :: Prelude.Maybe MentionSentiment, -- | Model confidence that the entity is relevant. Value range is zero to -- one, where one is highest confidence. score :: Prelude.Maybe Prelude.Double, -- | The text in the document that identifies the entity. text :: Prelude.Maybe Prelude.Text, -- | The type of the entity. Amazon Comprehend supports a variety of -- . type' :: Prelude.Maybe TargetedSentimentEntityType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TargetedSentimentMention' 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: -- -- 'beginOffset', 'targetedSentimentMention_beginOffset' - The offset into the document text where the mention begins. -- -- 'endOffset', 'targetedSentimentMention_endOffset' - The offset into the document text where the mention ends. -- -- 'groupScore', 'targetedSentimentMention_groupScore' - The confidence that all the entities mentioned in the group relate to -- the same entity. -- -- 'mentionSentiment', 'targetedSentimentMention_mentionSentiment' - Contains the sentiment and sentiment score for the mention. -- -- 'score', 'targetedSentimentMention_score' - Model confidence that the entity is relevant. Value range is zero to -- one, where one is highest confidence. -- -- 'text', 'targetedSentimentMention_text' - The text in the document that identifies the entity. -- -- 'type'', 'targetedSentimentMention_type' - The type of the entity. Amazon Comprehend supports a variety of -- . newTargetedSentimentMention :: TargetedSentimentMention newTargetedSentimentMention = TargetedSentimentMention' { beginOffset = Prelude.Nothing, endOffset = Prelude.Nothing, groupScore = Prelude.Nothing, mentionSentiment = Prelude.Nothing, score = Prelude.Nothing, text = Prelude.Nothing, type' = Prelude.Nothing } -- | The offset into the document text where the mention begins. targetedSentimentMention_beginOffset :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe Prelude.Int) targetedSentimentMention_beginOffset = Lens.lens (\TargetedSentimentMention' {beginOffset} -> beginOffset) (\s@TargetedSentimentMention' {} a -> s {beginOffset = a} :: TargetedSentimentMention) -- | The offset into the document text where the mention ends. targetedSentimentMention_endOffset :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe Prelude.Int) targetedSentimentMention_endOffset = Lens.lens (\TargetedSentimentMention' {endOffset} -> endOffset) (\s@TargetedSentimentMention' {} a -> s {endOffset = a} :: TargetedSentimentMention) -- | The confidence that all the entities mentioned in the group relate to -- the same entity. targetedSentimentMention_groupScore :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe Prelude.Double) targetedSentimentMention_groupScore = Lens.lens (\TargetedSentimentMention' {groupScore} -> groupScore) (\s@TargetedSentimentMention' {} a -> s {groupScore = a} :: TargetedSentimentMention) -- | Contains the sentiment and sentiment score for the mention. targetedSentimentMention_mentionSentiment :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe MentionSentiment) targetedSentimentMention_mentionSentiment = Lens.lens (\TargetedSentimentMention' {mentionSentiment} -> mentionSentiment) (\s@TargetedSentimentMention' {} a -> s {mentionSentiment = a} :: TargetedSentimentMention) -- | Model confidence that the entity is relevant. Value range is zero to -- one, where one is highest confidence. targetedSentimentMention_score :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe Prelude.Double) targetedSentimentMention_score = Lens.lens (\TargetedSentimentMention' {score} -> score) (\s@TargetedSentimentMention' {} a -> s {score = a} :: TargetedSentimentMention) -- | The text in the document that identifies the entity. targetedSentimentMention_text :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe Prelude.Text) targetedSentimentMention_text = Lens.lens (\TargetedSentimentMention' {text} -> text) (\s@TargetedSentimentMention' {} a -> s {text = a} :: TargetedSentimentMention) -- | The type of the entity. Amazon Comprehend supports a variety of -- . targetedSentimentMention_type :: Lens.Lens' TargetedSentimentMention (Prelude.Maybe TargetedSentimentEntityType) targetedSentimentMention_type = Lens.lens (\TargetedSentimentMention' {type'} -> type') (\s@TargetedSentimentMention' {} a -> s {type' = a} :: TargetedSentimentMention) instance Data.FromJSON TargetedSentimentMention where parseJSON = Data.withObject "TargetedSentimentMention" ( \x -> TargetedSentimentMention' Prelude.<$> (x Data..:? "BeginOffset") Prelude.<*> (x Data..:? "EndOffset") Prelude.<*> (x Data..:? "GroupScore") Prelude.<*> (x Data..:? "MentionSentiment") Prelude.<*> (x Data..:? "Score") Prelude.<*> (x Data..:? "Text") Prelude.<*> (x Data..:? "Type") ) instance Prelude.Hashable TargetedSentimentMention where hashWithSalt _salt TargetedSentimentMention' {..} = _salt `Prelude.hashWithSalt` beginOffset `Prelude.hashWithSalt` endOffset `Prelude.hashWithSalt` groupScore `Prelude.hashWithSalt` mentionSentiment `Prelude.hashWithSalt` score `Prelude.hashWithSalt` text `Prelude.hashWithSalt` type' instance Prelude.NFData TargetedSentimentMention where rnf TargetedSentimentMention' {..} = Prelude.rnf beginOffset `Prelude.seq` Prelude.rnf endOffset `Prelude.seq` Prelude.rnf groupScore `Prelude.seq` Prelude.rnf mentionSentiment `Prelude.seq` Prelude.rnf score `Prelude.seq` Prelude.rnf text `Prelude.seq` Prelude.rnf type'