amazonka-cognito-sync-2.0: gen/Amazonka/CognitoSync/SetCognitoEvents.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.CognitoSync.SetCognitoEvents
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Sets the AWS Lambda function for a given event type for an identity
-- pool. This request only updates the key\/value pair specified. Other
-- key\/values pairs are not updated. To remove a key value pair, pass a
-- empty value for the particular key.
--
-- This API can only be called with developer credentials. You cannot call
-- this API with the temporary user credentials provided by Cognito
-- Identity.
module Amazonka.CognitoSync.SetCognitoEvents
( -- * Creating a Request
SetCognitoEvents (..),
newSetCognitoEvents,
-- * Request Lenses
setCognitoEvents_identityPoolId,
setCognitoEvents_events,
-- * Destructuring the Response
SetCognitoEventsResponse (..),
newSetCognitoEventsResponse,
)
where
import Amazonka.CognitoSync.Types
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 qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | A request to configure Cognito Events\"
--
-- \"
--
-- /See:/ 'newSetCognitoEvents' smart constructor.
data SetCognitoEvents = SetCognitoEvents'
{ -- | The Cognito Identity Pool to use when configuring Cognito Events
identityPoolId :: Prelude.Text,
-- | The events to configure
events :: Prelude.HashMap Prelude.Text Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SetCognitoEvents' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'identityPoolId', 'setCognitoEvents_identityPoolId' - The Cognito Identity Pool to use when configuring Cognito Events
--
-- 'events', 'setCognitoEvents_events' - The events to configure
newSetCognitoEvents ::
-- | 'identityPoolId'
Prelude.Text ->
SetCognitoEvents
newSetCognitoEvents pIdentityPoolId_ =
SetCognitoEvents'
{ identityPoolId =
pIdentityPoolId_,
events = Prelude.mempty
}
-- | The Cognito Identity Pool to use when configuring Cognito Events
setCognitoEvents_identityPoolId :: Lens.Lens' SetCognitoEvents Prelude.Text
setCognitoEvents_identityPoolId = Lens.lens (\SetCognitoEvents' {identityPoolId} -> identityPoolId) (\s@SetCognitoEvents' {} a -> s {identityPoolId = a} :: SetCognitoEvents)
-- | The events to configure
setCognitoEvents_events :: Lens.Lens' SetCognitoEvents (Prelude.HashMap Prelude.Text Prelude.Text)
setCognitoEvents_events = Lens.lens (\SetCognitoEvents' {events} -> events) (\s@SetCognitoEvents' {} a -> s {events = a} :: SetCognitoEvents) Prelude.. Lens.coerced
instance Core.AWSRequest SetCognitoEvents where
type
AWSResponse SetCognitoEvents =
SetCognitoEventsResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveNull SetCognitoEventsResponse'
instance Prelude.Hashable SetCognitoEvents where
hashWithSalt _salt SetCognitoEvents' {..} =
_salt
`Prelude.hashWithSalt` identityPoolId
`Prelude.hashWithSalt` events
instance Prelude.NFData SetCognitoEvents where
rnf SetCognitoEvents' {..} =
Prelude.rnf identityPoolId
`Prelude.seq` Prelude.rnf events
instance Data.ToHeaders SetCognitoEvents where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON SetCognitoEvents where
toJSON SetCognitoEvents' {..} =
Data.object
( Prelude.catMaybes
[Prelude.Just ("Events" Data..= events)]
)
instance Data.ToPath SetCognitoEvents where
toPath SetCognitoEvents' {..} =
Prelude.mconcat
[ "/identitypools/",
Data.toBS identityPoolId,
"/events"
]
instance Data.ToQuery SetCognitoEvents where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newSetCognitoEventsResponse' smart constructor.
data SetCognitoEventsResponse = SetCognitoEventsResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SetCognitoEventsResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
newSetCognitoEventsResponse ::
SetCognitoEventsResponse
newSetCognitoEventsResponse =
SetCognitoEventsResponse'
instance Prelude.NFData SetCognitoEventsResponse where
rnf _ = ()