{-# 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.SageMaker.Types.HumanLoopRequestSource -- 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.SageMaker.Types.HumanLoopRequestSource 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.SageMaker.Types.AwsManagedHumanLoopRequestSource -- | Container for configuring the source of human task requests. -- -- /See:/ 'newHumanLoopRequestSource' smart constructor. data HumanLoopRequestSource = HumanLoopRequestSource' { -- | Specifies whether Amazon Rekognition or Amazon Textract are used as the -- integration source. The default field settings and JSON parsing rules -- are different based on the integration source. Valid values: awsManagedHumanLoopRequestSource :: AwsManagedHumanLoopRequestSource } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HumanLoopRequestSource' 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: -- -- 'awsManagedHumanLoopRequestSource', 'humanLoopRequestSource_awsManagedHumanLoopRequestSource' - Specifies whether Amazon Rekognition or Amazon Textract are used as the -- integration source. The default field settings and JSON parsing rules -- are different based on the integration source. Valid values: newHumanLoopRequestSource :: -- | 'awsManagedHumanLoopRequestSource' AwsManagedHumanLoopRequestSource -> HumanLoopRequestSource newHumanLoopRequestSource pAwsManagedHumanLoopRequestSource_ = HumanLoopRequestSource' { awsManagedHumanLoopRequestSource = pAwsManagedHumanLoopRequestSource_ } -- | Specifies whether Amazon Rekognition or Amazon Textract are used as the -- integration source. The default field settings and JSON parsing rules -- are different based on the integration source. Valid values: humanLoopRequestSource_awsManagedHumanLoopRequestSource :: Lens.Lens' HumanLoopRequestSource AwsManagedHumanLoopRequestSource humanLoopRequestSource_awsManagedHumanLoopRequestSource = Lens.lens (\HumanLoopRequestSource' {awsManagedHumanLoopRequestSource} -> awsManagedHumanLoopRequestSource) (\s@HumanLoopRequestSource' {} a -> s {awsManagedHumanLoopRequestSource = a} :: HumanLoopRequestSource) instance Data.FromJSON HumanLoopRequestSource where parseJSON = Data.withObject "HumanLoopRequestSource" ( \x -> HumanLoopRequestSource' Prelude.<$> (x Data..: "AwsManagedHumanLoopRequestSource") ) instance Prelude.Hashable HumanLoopRequestSource where hashWithSalt _salt HumanLoopRequestSource' {..} = _salt `Prelude.hashWithSalt` awsManagedHumanLoopRequestSource instance Prelude.NFData HumanLoopRequestSource where rnf HumanLoopRequestSource' {..} = Prelude.rnf awsManagedHumanLoopRequestSource instance Data.ToJSON HumanLoopRequestSource where toJSON HumanLoopRequestSource' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ( "AwsManagedHumanLoopRequestSource" Data..= awsManagedHumanLoopRequestSource ) ] )