{-# 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.Kendra.Types.ExperienceEndpoint -- 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.Kendra.Types.ExperienceEndpoint where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Kendra.Types.EndpointType import qualified Amazonka.Prelude as Prelude -- | Provides the configuration information for the endpoint for your Amazon -- Kendra experience. -- -- /See:/ 'newExperienceEndpoint' smart constructor. data ExperienceEndpoint = ExperienceEndpoint' { -- | The endpoint of your Amazon Kendra experience. endpoint :: Prelude.Maybe Prelude.Text, -- | The type of endpoint for your Amazon Kendra experience. The type -- currently available is @HOME@, which is a unique and fully hosted URL to -- the home page of your Amazon Kendra experience. endpointType :: Prelude.Maybe EndpointType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ExperienceEndpoint' 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: -- -- 'endpoint', 'experienceEndpoint_endpoint' - The endpoint of your Amazon Kendra experience. -- -- 'endpointType', 'experienceEndpoint_endpointType' - The type of endpoint for your Amazon Kendra experience. The type -- currently available is @HOME@, which is a unique and fully hosted URL to -- the home page of your Amazon Kendra experience. newExperienceEndpoint :: ExperienceEndpoint newExperienceEndpoint = ExperienceEndpoint' { endpoint = Prelude.Nothing, endpointType = Prelude.Nothing } -- | The endpoint of your Amazon Kendra experience. experienceEndpoint_endpoint :: Lens.Lens' ExperienceEndpoint (Prelude.Maybe Prelude.Text) experienceEndpoint_endpoint = Lens.lens (\ExperienceEndpoint' {endpoint} -> endpoint) (\s@ExperienceEndpoint' {} a -> s {endpoint = a} :: ExperienceEndpoint) -- | The type of endpoint for your Amazon Kendra experience. The type -- currently available is @HOME@, which is a unique and fully hosted URL to -- the home page of your Amazon Kendra experience. experienceEndpoint_endpointType :: Lens.Lens' ExperienceEndpoint (Prelude.Maybe EndpointType) experienceEndpoint_endpointType = Lens.lens (\ExperienceEndpoint' {endpointType} -> endpointType) (\s@ExperienceEndpoint' {} a -> s {endpointType = a} :: ExperienceEndpoint) instance Data.FromJSON ExperienceEndpoint where parseJSON = Data.withObject "ExperienceEndpoint" ( \x -> ExperienceEndpoint' Prelude.<$> (x Data..:? "Endpoint") Prelude.<*> (x Data..:? "EndpointType") ) instance Prelude.Hashable ExperienceEndpoint where hashWithSalt _salt ExperienceEndpoint' {..} = _salt `Prelude.hashWithSalt` endpoint `Prelude.hashWithSalt` endpointType instance Prelude.NFData ExperienceEndpoint where rnf ExperienceEndpoint' {..} = Prelude.rnf endpoint `Prelude.seq` Prelude.rnf endpointType