{-# 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.Chime.DeleteChannel
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Immediately makes a channel and its memberships inaccessible and marks
-- them for deletion. This is an irreversible process.
--
-- The @x-amz-chime-bearer@ request header is mandatory. Use the
-- @AppInstanceUserArn@ of the user that makes the API call as the value in
-- the header.
module Amazonka.Chime.DeleteChannel
  ( -- * Creating a Request
    DeleteChannel (..),
    newDeleteChannel,

    -- * Request Lenses
    deleteChannel_chimeBearer,
    deleteChannel_channelArn,

    -- * Destructuring the Response
    DeleteChannelResponse (..),
    newDeleteChannelResponse,
  )
where

import Amazonka.Chime.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newDeleteChannel' smart constructor.
data DeleteChannel = DeleteChannel'
  { -- | The @AppInstanceUserArn@ of the user that makes the API call.
    DeleteChannel -> Maybe Text
chimeBearer :: Prelude.Maybe Prelude.Text,
    -- | The ARN of the channel being deleted.
    DeleteChannel -> Text
channelArn :: Prelude.Text
  }
  deriving (DeleteChannel -> DeleteChannel -> Bool
(DeleteChannel -> DeleteChannel -> Bool)
-> (DeleteChannel -> DeleteChannel -> Bool) -> Eq DeleteChannel
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteChannel -> DeleteChannel -> Bool
$c/= :: DeleteChannel -> DeleteChannel -> Bool
== :: DeleteChannel -> DeleteChannel -> Bool
$c== :: DeleteChannel -> DeleteChannel -> Bool
Prelude.Eq, ReadPrec [DeleteChannel]
ReadPrec DeleteChannel
Int -> ReadS DeleteChannel
ReadS [DeleteChannel]
(Int -> ReadS DeleteChannel)
-> ReadS [DeleteChannel]
-> ReadPrec DeleteChannel
-> ReadPrec [DeleteChannel]
-> Read DeleteChannel
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteChannel]
$creadListPrec :: ReadPrec [DeleteChannel]
readPrec :: ReadPrec DeleteChannel
$creadPrec :: ReadPrec DeleteChannel
readList :: ReadS [DeleteChannel]
$creadList :: ReadS [DeleteChannel]
readsPrec :: Int -> ReadS DeleteChannel
$creadsPrec :: Int -> ReadS DeleteChannel
Prelude.Read, Int -> DeleteChannel -> ShowS
[DeleteChannel] -> ShowS
DeleteChannel -> String
(Int -> DeleteChannel -> ShowS)
-> (DeleteChannel -> String)
-> ([DeleteChannel] -> ShowS)
-> Show DeleteChannel
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteChannel] -> ShowS
$cshowList :: [DeleteChannel] -> ShowS
show :: DeleteChannel -> String
$cshow :: DeleteChannel -> String
showsPrec :: Int -> DeleteChannel -> ShowS
$cshowsPrec :: Int -> DeleteChannel -> ShowS
Prelude.Show, (forall x. DeleteChannel -> Rep DeleteChannel x)
-> (forall x. Rep DeleteChannel x -> DeleteChannel)
-> Generic DeleteChannel
forall x. Rep DeleteChannel x -> DeleteChannel
forall x. DeleteChannel -> Rep DeleteChannel x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteChannel x -> DeleteChannel
$cfrom :: forall x. DeleteChannel -> Rep DeleteChannel x
Prelude.Generic)

-- |
-- Create a value of 'DeleteChannel' 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:
--
-- 'chimeBearer', 'deleteChannel_chimeBearer' - The @AppInstanceUserArn@ of the user that makes the API call.
--
-- 'channelArn', 'deleteChannel_channelArn' - The ARN of the channel being deleted.
newDeleteChannel ::
  -- | 'channelArn'
  Prelude.Text ->
  DeleteChannel
newDeleteChannel :: Text -> DeleteChannel
newDeleteChannel Text
pChannelArn_ =
  DeleteChannel' :: Maybe Text -> Text -> DeleteChannel
DeleteChannel'
    { $sel:chimeBearer:DeleteChannel' :: Maybe Text
chimeBearer = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:channelArn:DeleteChannel' :: Text
channelArn = Text
pChannelArn_
    }

-- | The @AppInstanceUserArn@ of the user that makes the API call.
deleteChannel_chimeBearer :: Lens.Lens' DeleteChannel (Prelude.Maybe Prelude.Text)
deleteChannel_chimeBearer :: (Maybe Text -> f (Maybe Text)) -> DeleteChannel -> f DeleteChannel
deleteChannel_chimeBearer = (DeleteChannel -> Maybe Text)
-> (DeleteChannel -> Maybe Text -> DeleteChannel)
-> Lens DeleteChannel DeleteChannel (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteChannel' {Maybe Text
chimeBearer :: Maybe Text
$sel:chimeBearer:DeleteChannel' :: DeleteChannel -> Maybe Text
chimeBearer} -> Maybe Text
chimeBearer) (\s :: DeleteChannel
s@DeleteChannel' {} Maybe Text
a -> DeleteChannel
s {$sel:chimeBearer:DeleteChannel' :: Maybe Text
chimeBearer = Maybe Text
a} :: DeleteChannel)

-- | The ARN of the channel being deleted.
deleteChannel_channelArn :: Lens.Lens' DeleteChannel Prelude.Text
deleteChannel_channelArn :: (Text -> f Text) -> DeleteChannel -> f DeleteChannel
deleteChannel_channelArn = (DeleteChannel -> Text)
-> (DeleteChannel -> Text -> DeleteChannel)
-> Lens DeleteChannel DeleteChannel Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteChannel' {Text
channelArn :: Text
$sel:channelArn:DeleteChannel' :: DeleteChannel -> Text
channelArn} -> Text
channelArn) (\s :: DeleteChannel
s@DeleteChannel' {} Text
a -> DeleteChannel
s {$sel:channelArn:DeleteChannel' :: Text
channelArn = Text
a} :: DeleteChannel)

instance Core.AWSRequest DeleteChannel where
  type
    AWSResponse DeleteChannel =
      DeleteChannelResponse
  request :: DeleteChannel -> Request DeleteChannel
request = Service -> DeleteChannel -> Request DeleteChannel
forall a. ToRequest a => Service -> a -> Request a
Request.delete Service
defaultService
  response :: Logger
-> Service
-> Proxy DeleteChannel
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteChannel)))
response =
    AWSResponse DeleteChannel
-> Logger
-> Service
-> Proxy DeleteChannel
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteChannel)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse DeleteChannel
DeleteChannelResponse
DeleteChannelResponse'

instance Prelude.Hashable DeleteChannel

instance Prelude.NFData DeleteChannel

instance Core.ToHeaders DeleteChannel where
  toHeaders :: DeleteChannel -> [Header]
toHeaders DeleteChannel' {Maybe Text
Text
channelArn :: Text
chimeBearer :: Maybe Text
$sel:channelArn:DeleteChannel' :: DeleteChannel -> Text
$sel:chimeBearer:DeleteChannel' :: DeleteChannel -> Maybe Text
..} =
    [[Header]] -> [Header]
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [HeaderName
"x-amz-chime-bearer" HeaderName -> Maybe Text -> [Header]
forall a. ToHeader a => HeaderName -> a -> [Header]
Core.=# Maybe Text
chimeBearer]

instance Core.ToPath DeleteChannel where
  toPath :: DeleteChannel -> ByteString
toPath DeleteChannel' {Maybe Text
Text
channelArn :: Text
chimeBearer :: Maybe Text
$sel:channelArn:DeleteChannel' :: DeleteChannel -> Text
$sel:chimeBearer:DeleteChannel' :: DeleteChannel -> Maybe Text
..} =
    [ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ByteString
"/channels/", Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
channelArn]

instance Core.ToQuery DeleteChannel where
  toQuery :: DeleteChannel -> QueryString
toQuery = QueryString -> DeleteChannel -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newDeleteChannelResponse' smart constructor.
data DeleteChannelResponse = DeleteChannelResponse'
  {
  }
  deriving (DeleteChannelResponse -> DeleteChannelResponse -> Bool
(DeleteChannelResponse -> DeleteChannelResponse -> Bool)
-> (DeleteChannelResponse -> DeleteChannelResponse -> Bool)
-> Eq DeleteChannelResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteChannelResponse -> DeleteChannelResponse -> Bool
$c/= :: DeleteChannelResponse -> DeleteChannelResponse -> Bool
== :: DeleteChannelResponse -> DeleteChannelResponse -> Bool
$c== :: DeleteChannelResponse -> DeleteChannelResponse -> Bool
Prelude.Eq, ReadPrec [DeleteChannelResponse]
ReadPrec DeleteChannelResponse
Int -> ReadS DeleteChannelResponse
ReadS [DeleteChannelResponse]
(Int -> ReadS DeleteChannelResponse)
-> ReadS [DeleteChannelResponse]
-> ReadPrec DeleteChannelResponse
-> ReadPrec [DeleteChannelResponse]
-> Read DeleteChannelResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteChannelResponse]
$creadListPrec :: ReadPrec [DeleteChannelResponse]
readPrec :: ReadPrec DeleteChannelResponse
$creadPrec :: ReadPrec DeleteChannelResponse
readList :: ReadS [DeleteChannelResponse]
$creadList :: ReadS [DeleteChannelResponse]
readsPrec :: Int -> ReadS DeleteChannelResponse
$creadsPrec :: Int -> ReadS DeleteChannelResponse
Prelude.Read, Int -> DeleteChannelResponse -> ShowS
[DeleteChannelResponse] -> ShowS
DeleteChannelResponse -> String
(Int -> DeleteChannelResponse -> ShowS)
-> (DeleteChannelResponse -> String)
-> ([DeleteChannelResponse] -> ShowS)
-> Show DeleteChannelResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteChannelResponse] -> ShowS
$cshowList :: [DeleteChannelResponse] -> ShowS
show :: DeleteChannelResponse -> String
$cshow :: DeleteChannelResponse -> String
showsPrec :: Int -> DeleteChannelResponse -> ShowS
$cshowsPrec :: Int -> DeleteChannelResponse -> ShowS
Prelude.Show, (forall x. DeleteChannelResponse -> Rep DeleteChannelResponse x)
-> (forall x. Rep DeleteChannelResponse x -> DeleteChannelResponse)
-> Generic DeleteChannelResponse
forall x. Rep DeleteChannelResponse x -> DeleteChannelResponse
forall x. DeleteChannelResponse -> Rep DeleteChannelResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteChannelResponse x -> DeleteChannelResponse
$cfrom :: forall x. DeleteChannelResponse -> Rep DeleteChannelResponse x
Prelude.Generic)

-- |
-- Create a value of 'DeleteChannelResponse' 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.
newDeleteChannelResponse ::
  DeleteChannelResponse
newDeleteChannelResponse :: DeleteChannelResponse
newDeleteChannelResponse = DeleteChannelResponse
DeleteChannelResponse'

instance Prelude.NFData DeleteChannelResponse