amazonka-detective-2.0: gen/Amazonka/Detective/AcceptInvitation.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.Detective.AcceptInvitation
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Accepts an invitation for the member account to contribute data to a
-- behavior graph. This operation can only be called by an invited member
-- account.
--
-- The request provides the ARN of behavior graph.
--
-- The member account status in the graph must be @INVITED@.
module Amazonka.Detective.AcceptInvitation
( -- * Creating a Request
AcceptInvitation (..),
newAcceptInvitation,
-- * Request Lenses
acceptInvitation_graphArn,
-- * Destructuring the Response
AcceptInvitationResponse (..),
newAcceptInvitationResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.Detective.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newAcceptInvitation' smart constructor.
data AcceptInvitation = AcceptInvitation'
{ -- | The ARN of the behavior graph that the member account is accepting the
-- invitation for.
--
-- The member account status in the behavior graph must be @INVITED@.
graphArn :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AcceptInvitation' 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:
--
-- 'graphArn', 'acceptInvitation_graphArn' - The ARN of the behavior graph that the member account is accepting the
-- invitation for.
--
-- The member account status in the behavior graph must be @INVITED@.
newAcceptInvitation ::
-- | 'graphArn'
Prelude.Text ->
AcceptInvitation
newAcceptInvitation pGraphArn_ =
AcceptInvitation' {graphArn = pGraphArn_}
-- | The ARN of the behavior graph that the member account is accepting the
-- invitation for.
--
-- The member account status in the behavior graph must be @INVITED@.
acceptInvitation_graphArn :: Lens.Lens' AcceptInvitation Prelude.Text
acceptInvitation_graphArn = Lens.lens (\AcceptInvitation' {graphArn} -> graphArn) (\s@AcceptInvitation' {} a -> s {graphArn = a} :: AcceptInvitation)
instance Core.AWSRequest AcceptInvitation where
type
AWSResponse AcceptInvitation =
AcceptInvitationResponse
request overrides =
Request.putJSON (overrides defaultService)
response =
Response.receiveNull AcceptInvitationResponse'
instance Prelude.Hashable AcceptInvitation where
hashWithSalt _salt AcceptInvitation' {..} =
_salt `Prelude.hashWithSalt` graphArn
instance Prelude.NFData AcceptInvitation where
rnf AcceptInvitation' {..} = Prelude.rnf graphArn
instance Data.ToHeaders AcceptInvitation where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON AcceptInvitation where
toJSON AcceptInvitation' {..} =
Data.object
( Prelude.catMaybes
[Prelude.Just ("GraphArn" Data..= graphArn)]
)
instance Data.ToPath AcceptInvitation where
toPath = Prelude.const "/invitation"
instance Data.ToQuery AcceptInvitation where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newAcceptInvitationResponse' smart constructor.
data AcceptInvitationResponse = AcceptInvitationResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AcceptInvitationResponse' 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.
newAcceptInvitationResponse ::
AcceptInvitationResponse
newAcceptInvitationResponse =
AcceptInvitationResponse'
instance Prelude.NFData AcceptInvitationResponse where
rnf _ = ()