{-# 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 #-}
module Amazonka.LicenseManager.DeleteLicenseConfiguration
(
DeleteLicenseConfiguration (..),
newDeleteLicenseConfiguration,
deleteLicenseConfiguration_licenseConfigurationArn,
DeleteLicenseConfigurationResponse (..),
newDeleteLicenseConfigurationResponse,
deleteLicenseConfigurationResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.LicenseManager.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data DeleteLicenseConfiguration = DeleteLicenseConfiguration'
{
DeleteLicenseConfiguration -> Text
licenseConfigurationArn :: Prelude.Text
}
deriving (DeleteLicenseConfiguration -> DeleteLicenseConfiguration -> Bool
(DeleteLicenseConfiguration -> DeleteLicenseConfiguration -> Bool)
-> (DeleteLicenseConfiguration
-> DeleteLicenseConfiguration -> Bool)
-> Eq DeleteLicenseConfiguration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteLicenseConfiguration -> DeleteLicenseConfiguration -> Bool
$c/= :: DeleteLicenseConfiguration -> DeleteLicenseConfiguration -> Bool
== :: DeleteLicenseConfiguration -> DeleteLicenseConfiguration -> Bool
$c== :: DeleteLicenseConfiguration -> DeleteLicenseConfiguration -> Bool
Prelude.Eq, ReadPrec [DeleteLicenseConfiguration]
ReadPrec DeleteLicenseConfiguration
Int -> ReadS DeleteLicenseConfiguration
ReadS [DeleteLicenseConfiguration]
(Int -> ReadS DeleteLicenseConfiguration)
-> ReadS [DeleteLicenseConfiguration]
-> ReadPrec DeleteLicenseConfiguration
-> ReadPrec [DeleteLicenseConfiguration]
-> Read DeleteLicenseConfiguration
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteLicenseConfiguration]
$creadListPrec :: ReadPrec [DeleteLicenseConfiguration]
readPrec :: ReadPrec DeleteLicenseConfiguration
$creadPrec :: ReadPrec DeleteLicenseConfiguration
readList :: ReadS [DeleteLicenseConfiguration]
$creadList :: ReadS [DeleteLicenseConfiguration]
readsPrec :: Int -> ReadS DeleteLicenseConfiguration
$creadsPrec :: Int -> ReadS DeleteLicenseConfiguration
Prelude.Read, Int -> DeleteLicenseConfiguration -> ShowS
[DeleteLicenseConfiguration] -> ShowS
DeleteLicenseConfiguration -> String
(Int -> DeleteLicenseConfiguration -> ShowS)
-> (DeleteLicenseConfiguration -> String)
-> ([DeleteLicenseConfiguration] -> ShowS)
-> Show DeleteLicenseConfiguration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteLicenseConfiguration] -> ShowS
$cshowList :: [DeleteLicenseConfiguration] -> ShowS
show :: DeleteLicenseConfiguration -> String
$cshow :: DeleteLicenseConfiguration -> String
showsPrec :: Int -> DeleteLicenseConfiguration -> ShowS
$cshowsPrec :: Int -> DeleteLicenseConfiguration -> ShowS
Prelude.Show, (forall x.
DeleteLicenseConfiguration -> Rep DeleteLicenseConfiguration x)
-> (forall x.
Rep DeleteLicenseConfiguration x -> DeleteLicenseConfiguration)
-> Generic DeleteLicenseConfiguration
forall x.
Rep DeleteLicenseConfiguration x -> DeleteLicenseConfiguration
forall x.
DeleteLicenseConfiguration -> Rep DeleteLicenseConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteLicenseConfiguration x -> DeleteLicenseConfiguration
$cfrom :: forall x.
DeleteLicenseConfiguration -> Rep DeleteLicenseConfiguration x
Prelude.Generic)
newDeleteLicenseConfiguration ::
Prelude.Text ->
DeleteLicenseConfiguration
newDeleteLicenseConfiguration :: Text -> DeleteLicenseConfiguration
newDeleteLicenseConfiguration
Text
pLicenseConfigurationArn_ =
DeleteLicenseConfiguration' :: Text -> DeleteLicenseConfiguration
DeleteLicenseConfiguration'
{ $sel:licenseConfigurationArn:DeleteLicenseConfiguration' :: Text
licenseConfigurationArn =
Text
pLicenseConfigurationArn_
}
deleteLicenseConfiguration_licenseConfigurationArn :: Lens.Lens' DeleteLicenseConfiguration Prelude.Text
deleteLicenseConfiguration_licenseConfigurationArn :: (Text -> f Text)
-> DeleteLicenseConfiguration -> f DeleteLicenseConfiguration
deleteLicenseConfiguration_licenseConfigurationArn = (DeleteLicenseConfiguration -> Text)
-> (DeleteLicenseConfiguration
-> Text -> DeleteLicenseConfiguration)
-> Lens
DeleteLicenseConfiguration DeleteLicenseConfiguration Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteLicenseConfiguration' {Text
licenseConfigurationArn :: Text
$sel:licenseConfigurationArn:DeleteLicenseConfiguration' :: DeleteLicenseConfiguration -> Text
licenseConfigurationArn} -> Text
licenseConfigurationArn) (\s :: DeleteLicenseConfiguration
s@DeleteLicenseConfiguration' {} Text
a -> DeleteLicenseConfiguration
s {$sel:licenseConfigurationArn:DeleteLicenseConfiguration' :: Text
licenseConfigurationArn = Text
a} :: DeleteLicenseConfiguration)
instance Core.AWSRequest DeleteLicenseConfiguration where
type
AWSResponse DeleteLicenseConfiguration =
DeleteLicenseConfigurationResponse
request :: DeleteLicenseConfiguration -> Request DeleteLicenseConfiguration
request = Service
-> DeleteLicenseConfiguration -> Request DeleteLicenseConfiguration
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteLicenseConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteLicenseConfiguration)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteLicenseConfiguration))
-> Logger
-> Service
-> Proxy DeleteLicenseConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteLicenseConfiguration)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> DeleteLicenseConfigurationResponse
DeleteLicenseConfigurationResponse'
(Int -> DeleteLicenseConfigurationResponse)
-> Either String Int
-> Either String DeleteLicenseConfigurationResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable DeleteLicenseConfiguration
instance Prelude.NFData DeleteLicenseConfiguration
instance Core.ToHeaders DeleteLicenseConfiguration where
toHeaders :: DeleteLicenseConfiguration -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteLicenseConfiguration -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"AWSLicenseManager.DeleteLicenseConfiguration" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON DeleteLicenseConfiguration where
toJSON :: DeleteLicenseConfiguration -> Value
toJSON DeleteLicenseConfiguration' {Text
licenseConfigurationArn :: Text
$sel:licenseConfigurationArn:DeleteLicenseConfiguration' :: DeleteLicenseConfiguration -> Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
( Text
"LicenseConfigurationArn"
Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
licenseConfigurationArn
)
]
)
instance Core.ToPath DeleteLicenseConfiguration where
toPath :: DeleteLicenseConfiguration -> ByteString
toPath = ByteString -> DeleteLicenseConfiguration -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DeleteLicenseConfiguration where
toQuery :: DeleteLicenseConfiguration -> QueryString
toQuery = QueryString -> DeleteLicenseConfiguration -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteLicenseConfigurationResponse = DeleteLicenseConfigurationResponse'
{
DeleteLicenseConfigurationResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool
(DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool)
-> (DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool)
-> Eq DeleteLicenseConfigurationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool
$c/= :: DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool
== :: DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool
$c== :: DeleteLicenseConfigurationResponse
-> DeleteLicenseConfigurationResponse -> Bool
Prelude.Eq, ReadPrec [DeleteLicenseConfigurationResponse]
ReadPrec DeleteLicenseConfigurationResponse
Int -> ReadS DeleteLicenseConfigurationResponse
ReadS [DeleteLicenseConfigurationResponse]
(Int -> ReadS DeleteLicenseConfigurationResponse)
-> ReadS [DeleteLicenseConfigurationResponse]
-> ReadPrec DeleteLicenseConfigurationResponse
-> ReadPrec [DeleteLicenseConfigurationResponse]
-> Read DeleteLicenseConfigurationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteLicenseConfigurationResponse]
$creadListPrec :: ReadPrec [DeleteLicenseConfigurationResponse]
readPrec :: ReadPrec DeleteLicenseConfigurationResponse
$creadPrec :: ReadPrec DeleteLicenseConfigurationResponse
readList :: ReadS [DeleteLicenseConfigurationResponse]
$creadList :: ReadS [DeleteLicenseConfigurationResponse]
readsPrec :: Int -> ReadS DeleteLicenseConfigurationResponse
$creadsPrec :: Int -> ReadS DeleteLicenseConfigurationResponse
Prelude.Read, Int -> DeleteLicenseConfigurationResponse -> ShowS
[DeleteLicenseConfigurationResponse] -> ShowS
DeleteLicenseConfigurationResponse -> String
(Int -> DeleteLicenseConfigurationResponse -> ShowS)
-> (DeleteLicenseConfigurationResponse -> String)
-> ([DeleteLicenseConfigurationResponse] -> ShowS)
-> Show DeleteLicenseConfigurationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteLicenseConfigurationResponse] -> ShowS
$cshowList :: [DeleteLicenseConfigurationResponse] -> ShowS
show :: DeleteLicenseConfigurationResponse -> String
$cshow :: DeleteLicenseConfigurationResponse -> String
showsPrec :: Int -> DeleteLicenseConfigurationResponse -> ShowS
$cshowsPrec :: Int -> DeleteLicenseConfigurationResponse -> ShowS
Prelude.Show, (forall x.
DeleteLicenseConfigurationResponse
-> Rep DeleteLicenseConfigurationResponse x)
-> (forall x.
Rep DeleteLicenseConfigurationResponse x
-> DeleteLicenseConfigurationResponse)
-> Generic DeleteLicenseConfigurationResponse
forall x.
Rep DeleteLicenseConfigurationResponse x
-> DeleteLicenseConfigurationResponse
forall x.
DeleteLicenseConfigurationResponse
-> Rep DeleteLicenseConfigurationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteLicenseConfigurationResponse x
-> DeleteLicenseConfigurationResponse
$cfrom :: forall x.
DeleteLicenseConfigurationResponse
-> Rep DeleteLicenseConfigurationResponse x
Prelude.Generic)
newDeleteLicenseConfigurationResponse ::
Prelude.Int ->
DeleteLicenseConfigurationResponse
newDeleteLicenseConfigurationResponse :: Int -> DeleteLicenseConfigurationResponse
newDeleteLicenseConfigurationResponse Int
pHttpStatus_ =
DeleteLicenseConfigurationResponse' :: Int -> DeleteLicenseConfigurationResponse
DeleteLicenseConfigurationResponse'
{ $sel:httpStatus:DeleteLicenseConfigurationResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
deleteLicenseConfigurationResponse_httpStatus :: Lens.Lens' DeleteLicenseConfigurationResponse Prelude.Int
deleteLicenseConfigurationResponse_httpStatus :: (Int -> f Int)
-> DeleteLicenseConfigurationResponse
-> f DeleteLicenseConfigurationResponse
deleteLicenseConfigurationResponse_httpStatus = (DeleteLicenseConfigurationResponse -> Int)
-> (DeleteLicenseConfigurationResponse
-> Int -> DeleteLicenseConfigurationResponse)
-> Lens
DeleteLicenseConfigurationResponse
DeleteLicenseConfigurationResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteLicenseConfigurationResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteLicenseConfigurationResponse' :: DeleteLicenseConfigurationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteLicenseConfigurationResponse
s@DeleteLicenseConfigurationResponse' {} Int
a -> DeleteLicenseConfigurationResponse
s {$sel:httpStatus:DeleteLicenseConfigurationResponse' :: Int
httpStatus = Int
a} :: DeleteLicenseConfigurationResponse)
instance
Prelude.NFData
DeleteLicenseConfigurationResponse