amazonka-cognito-idp-2.0: gen/Amazonka/CognitoIdentityProvider/GlobalSignOut.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.CognitoIdentityProvider.GlobalSignOut
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Signs out users from all devices. It also invalidates all refresh tokens
-- that Amazon Cognito has issued to a user. A user can still use a hosted
-- UI cookie to retrieve new tokens for the duration of the 1-hour cookie
-- validity period.
module Amazonka.CognitoIdentityProvider.GlobalSignOut
( -- * Creating a Request
GlobalSignOut (..),
newGlobalSignOut,
-- * Request Lenses
globalSignOut_accessToken,
-- * Destructuring the Response
GlobalSignOutResponse (..),
newGlobalSignOutResponse,
-- * Response Lenses
globalSignOutResponse_httpStatus,
)
where
import Amazonka.CognitoIdentityProvider.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
-- | Represents the request to sign out all devices.
--
-- /See:/ 'newGlobalSignOut' smart constructor.
data GlobalSignOut = GlobalSignOut'
{ -- | A valid access token that Amazon Cognito issued to the user who you want
-- to sign out.
accessToken :: Data.Sensitive Prelude.Text
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GlobalSignOut' 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:
--
-- 'accessToken', 'globalSignOut_accessToken' - A valid access token that Amazon Cognito issued to the user who you want
-- to sign out.
newGlobalSignOut ::
-- | 'accessToken'
Prelude.Text ->
GlobalSignOut
newGlobalSignOut pAccessToken_ =
GlobalSignOut'
{ accessToken =
Data._Sensitive Lens.# pAccessToken_
}
-- | A valid access token that Amazon Cognito issued to the user who you want
-- to sign out.
globalSignOut_accessToken :: Lens.Lens' GlobalSignOut Prelude.Text
globalSignOut_accessToken = Lens.lens (\GlobalSignOut' {accessToken} -> accessToken) (\s@GlobalSignOut' {} a -> s {accessToken = a} :: GlobalSignOut) Prelude.. Data._Sensitive
instance Core.AWSRequest GlobalSignOut where
type
AWSResponse GlobalSignOut =
GlobalSignOutResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveEmpty
( \s h x ->
GlobalSignOutResponse'
Prelude.<$> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable GlobalSignOut where
hashWithSalt _salt GlobalSignOut' {..} =
_salt `Prelude.hashWithSalt` accessToken
instance Prelude.NFData GlobalSignOut where
rnf GlobalSignOut' {..} = Prelude.rnf accessToken
instance Data.ToHeaders GlobalSignOut where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "AWSCognitoIdentityProviderService.GlobalSignOut" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON GlobalSignOut where
toJSON GlobalSignOut' {..} =
Data.object
( Prelude.catMaybes
[Prelude.Just ("AccessToken" Data..= accessToken)]
)
instance Data.ToPath GlobalSignOut where
toPath = Prelude.const "/"
instance Data.ToQuery GlobalSignOut where
toQuery = Prelude.const Prelude.mempty
-- | The response to the request to sign out all devices.
--
-- /See:/ 'newGlobalSignOutResponse' smart constructor.
data GlobalSignOutResponse = GlobalSignOutResponse'
{ -- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GlobalSignOutResponse' 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:
--
-- 'httpStatus', 'globalSignOutResponse_httpStatus' - The response's http status code.
newGlobalSignOutResponse ::
-- | 'httpStatus'
Prelude.Int ->
GlobalSignOutResponse
newGlobalSignOutResponse pHttpStatus_ =
GlobalSignOutResponse' {httpStatus = pHttpStatus_}
-- | The response's http status code.
globalSignOutResponse_httpStatus :: Lens.Lens' GlobalSignOutResponse Prelude.Int
globalSignOutResponse_httpStatus = Lens.lens (\GlobalSignOutResponse' {httpStatus} -> httpStatus) (\s@GlobalSignOutResponse' {} a -> s {httpStatus = a} :: GlobalSignOutResponse)
instance Prelude.NFData GlobalSignOutResponse where
rnf GlobalSignOutResponse' {..} =
Prelude.rnf httpStatus