{-# 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.SSM.DeleteAssociation
(
DeleteAssociation (..),
newDeleteAssociation,
deleteAssociation_associationId,
deleteAssociation_instanceId,
deleteAssociation_name,
DeleteAssociationResponse (..),
newDeleteAssociationResponse,
deleteAssociationResponse_httpStatus,
)
where
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
import Amazonka.SSM.Types
data DeleteAssociation = DeleteAssociation'
{
DeleteAssociation -> Maybe Text
associationId :: Prelude.Maybe Prelude.Text,
DeleteAssociation -> Maybe Text
instanceId :: Prelude.Maybe Prelude.Text,
DeleteAssociation -> Maybe Text
name :: Prelude.Maybe Prelude.Text
}
deriving (DeleteAssociation -> DeleteAssociation -> Bool
(DeleteAssociation -> DeleteAssociation -> Bool)
-> (DeleteAssociation -> DeleteAssociation -> Bool)
-> Eq DeleteAssociation
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAssociation -> DeleteAssociation -> Bool
$c/= :: DeleteAssociation -> DeleteAssociation -> Bool
== :: DeleteAssociation -> DeleteAssociation -> Bool
$c== :: DeleteAssociation -> DeleteAssociation -> Bool
Prelude.Eq, ReadPrec [DeleteAssociation]
ReadPrec DeleteAssociation
Int -> ReadS DeleteAssociation
ReadS [DeleteAssociation]
(Int -> ReadS DeleteAssociation)
-> ReadS [DeleteAssociation]
-> ReadPrec DeleteAssociation
-> ReadPrec [DeleteAssociation]
-> Read DeleteAssociation
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAssociation]
$creadListPrec :: ReadPrec [DeleteAssociation]
readPrec :: ReadPrec DeleteAssociation
$creadPrec :: ReadPrec DeleteAssociation
readList :: ReadS [DeleteAssociation]
$creadList :: ReadS [DeleteAssociation]
readsPrec :: Int -> ReadS DeleteAssociation
$creadsPrec :: Int -> ReadS DeleteAssociation
Prelude.Read, Int -> DeleteAssociation -> ShowS
[DeleteAssociation] -> ShowS
DeleteAssociation -> String
(Int -> DeleteAssociation -> ShowS)
-> (DeleteAssociation -> String)
-> ([DeleteAssociation] -> ShowS)
-> Show DeleteAssociation
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAssociation] -> ShowS
$cshowList :: [DeleteAssociation] -> ShowS
show :: DeleteAssociation -> String
$cshow :: DeleteAssociation -> String
showsPrec :: Int -> DeleteAssociation -> ShowS
$cshowsPrec :: Int -> DeleteAssociation -> ShowS
Prelude.Show, (forall x. DeleteAssociation -> Rep DeleteAssociation x)
-> (forall x. Rep DeleteAssociation x -> DeleteAssociation)
-> Generic DeleteAssociation
forall x. Rep DeleteAssociation x -> DeleteAssociation
forall x. DeleteAssociation -> Rep DeleteAssociation x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteAssociation x -> DeleteAssociation
$cfrom :: forall x. DeleteAssociation -> Rep DeleteAssociation x
Prelude.Generic)
newDeleteAssociation ::
DeleteAssociation
newDeleteAssociation :: DeleteAssociation
newDeleteAssociation =
DeleteAssociation' :: Maybe Text -> Maybe Text -> Maybe Text -> DeleteAssociation
DeleteAssociation'
{ $sel:associationId:DeleteAssociation' :: Maybe Text
associationId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:instanceId:DeleteAssociation' :: Maybe Text
instanceId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:name:DeleteAssociation' :: Maybe Text
name = Maybe Text
forall a. Maybe a
Prelude.Nothing
}
deleteAssociation_associationId :: Lens.Lens' DeleteAssociation (Prelude.Maybe Prelude.Text)
deleteAssociation_associationId :: (Maybe Text -> f (Maybe Text))
-> DeleteAssociation -> f DeleteAssociation
deleteAssociation_associationId = (DeleteAssociation -> Maybe Text)
-> (DeleteAssociation -> Maybe Text -> DeleteAssociation)
-> Lens
DeleteAssociation DeleteAssociation (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Maybe Text
associationId :: Maybe Text
$sel:associationId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
associationId} -> Maybe Text
associationId) (\s :: DeleteAssociation
s@DeleteAssociation' {} Maybe Text
a -> DeleteAssociation
s {$sel:associationId:DeleteAssociation' :: Maybe Text
associationId = Maybe Text
a} :: DeleteAssociation)
deleteAssociation_instanceId :: Lens.Lens' DeleteAssociation (Prelude.Maybe Prelude.Text)
deleteAssociation_instanceId :: (Maybe Text -> f (Maybe Text))
-> DeleteAssociation -> f DeleteAssociation
deleteAssociation_instanceId = (DeleteAssociation -> Maybe Text)
-> (DeleteAssociation -> Maybe Text -> DeleteAssociation)
-> Lens
DeleteAssociation DeleteAssociation (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Maybe Text
instanceId :: Maybe Text
$sel:instanceId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
instanceId} -> Maybe Text
instanceId) (\s :: DeleteAssociation
s@DeleteAssociation' {} Maybe Text
a -> DeleteAssociation
s {$sel:instanceId:DeleteAssociation' :: Maybe Text
instanceId = Maybe Text
a} :: DeleteAssociation)
deleteAssociation_name :: Lens.Lens' DeleteAssociation (Prelude.Maybe Prelude.Text)
deleteAssociation_name :: (Maybe Text -> f (Maybe Text))
-> DeleteAssociation -> f DeleteAssociation
deleteAssociation_name = (DeleteAssociation -> Maybe Text)
-> (DeleteAssociation -> Maybe Text -> DeleteAssociation)
-> Lens
DeleteAssociation DeleteAssociation (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociation' {Maybe Text
name :: Maybe Text
$sel:name:DeleteAssociation' :: DeleteAssociation -> Maybe Text
name} -> Maybe Text
name) (\s :: DeleteAssociation
s@DeleteAssociation' {} Maybe Text
a -> DeleteAssociation
s {$sel:name:DeleteAssociation' :: Maybe Text
name = Maybe Text
a} :: DeleteAssociation)
instance Core.AWSRequest DeleteAssociation where
type
AWSResponse DeleteAssociation =
DeleteAssociationResponse
request :: DeleteAssociation -> Request DeleteAssociation
request = Service -> DeleteAssociation -> Request DeleteAssociation
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeleteAssociation
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAssociation)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse DeleteAssociation))
-> Logger
-> Service
-> Proxy DeleteAssociation
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DeleteAssociation)))
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 -> DeleteAssociationResponse
DeleteAssociationResponse'
(Int -> DeleteAssociationResponse)
-> Either String Int -> Either String DeleteAssociationResponse
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 DeleteAssociation
instance Prelude.NFData DeleteAssociation
instance Core.ToHeaders DeleteAssociation where
toHeaders :: DeleteAssociation -> ResponseHeaders
toHeaders =
ResponseHeaders -> DeleteAssociation -> 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
"AmazonSSM.DeleteAssociation" ::
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 DeleteAssociation where
toJSON :: DeleteAssociation -> Value
toJSON DeleteAssociation' {Maybe Text
name :: Maybe Text
instanceId :: Maybe Text
associationId :: Maybe Text
$sel:name:DeleteAssociation' :: DeleteAssociation -> Maybe Text
$sel:instanceId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
$sel:associationId:DeleteAssociation' :: DeleteAssociation -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"AssociationId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
associationId,
(Text
"InstanceId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
instanceId,
(Text
"Name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
name
]
)
instance Core.ToPath DeleteAssociation where
toPath :: DeleteAssociation -> ByteString
toPath = ByteString -> DeleteAssociation -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DeleteAssociation where
toQuery :: DeleteAssociation -> QueryString
toQuery = QueryString -> DeleteAssociation -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeleteAssociationResponse = DeleteAssociationResponse'
{
DeleteAssociationResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeleteAssociationResponse -> DeleteAssociationResponse -> Bool
(DeleteAssociationResponse -> DeleteAssociationResponse -> Bool)
-> (DeleteAssociationResponse -> DeleteAssociationResponse -> Bool)
-> Eq DeleteAssociationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAssociationResponse -> DeleteAssociationResponse -> Bool
$c/= :: DeleteAssociationResponse -> DeleteAssociationResponse -> Bool
== :: DeleteAssociationResponse -> DeleteAssociationResponse -> Bool
$c== :: DeleteAssociationResponse -> DeleteAssociationResponse -> Bool
Prelude.Eq, ReadPrec [DeleteAssociationResponse]
ReadPrec DeleteAssociationResponse
Int -> ReadS DeleteAssociationResponse
ReadS [DeleteAssociationResponse]
(Int -> ReadS DeleteAssociationResponse)
-> ReadS [DeleteAssociationResponse]
-> ReadPrec DeleteAssociationResponse
-> ReadPrec [DeleteAssociationResponse]
-> Read DeleteAssociationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAssociationResponse]
$creadListPrec :: ReadPrec [DeleteAssociationResponse]
readPrec :: ReadPrec DeleteAssociationResponse
$creadPrec :: ReadPrec DeleteAssociationResponse
readList :: ReadS [DeleteAssociationResponse]
$creadList :: ReadS [DeleteAssociationResponse]
readsPrec :: Int -> ReadS DeleteAssociationResponse
$creadsPrec :: Int -> ReadS DeleteAssociationResponse
Prelude.Read, Int -> DeleteAssociationResponse -> ShowS
[DeleteAssociationResponse] -> ShowS
DeleteAssociationResponse -> String
(Int -> DeleteAssociationResponse -> ShowS)
-> (DeleteAssociationResponse -> String)
-> ([DeleteAssociationResponse] -> ShowS)
-> Show DeleteAssociationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAssociationResponse] -> ShowS
$cshowList :: [DeleteAssociationResponse] -> ShowS
show :: DeleteAssociationResponse -> String
$cshow :: DeleteAssociationResponse -> String
showsPrec :: Int -> DeleteAssociationResponse -> ShowS
$cshowsPrec :: Int -> DeleteAssociationResponse -> ShowS
Prelude.Show, (forall x.
DeleteAssociationResponse -> Rep DeleteAssociationResponse x)
-> (forall x.
Rep DeleteAssociationResponse x -> DeleteAssociationResponse)
-> Generic DeleteAssociationResponse
forall x.
Rep DeleteAssociationResponse x -> DeleteAssociationResponse
forall x.
DeleteAssociationResponse -> Rep DeleteAssociationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteAssociationResponse x -> DeleteAssociationResponse
$cfrom :: forall x.
DeleteAssociationResponse -> Rep DeleteAssociationResponse x
Prelude.Generic)
newDeleteAssociationResponse ::
Prelude.Int ->
DeleteAssociationResponse
newDeleteAssociationResponse :: Int -> DeleteAssociationResponse
newDeleteAssociationResponse Int
pHttpStatus_ =
DeleteAssociationResponse' :: Int -> DeleteAssociationResponse
DeleteAssociationResponse'
{ $sel:httpStatus:DeleteAssociationResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
deleteAssociationResponse_httpStatus :: Lens.Lens' DeleteAssociationResponse Prelude.Int
deleteAssociationResponse_httpStatus :: (Int -> f Int)
-> DeleteAssociationResponse -> f DeleteAssociationResponse
deleteAssociationResponse_httpStatus = (DeleteAssociationResponse -> Int)
-> (DeleteAssociationResponse -> Int -> DeleteAssociationResponse)
-> Lens DeleteAssociationResponse DeleteAssociationResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAssociationResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteAssociationResponse' :: DeleteAssociationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteAssociationResponse
s@DeleteAssociationResponse' {} Int
a -> DeleteAssociationResponse
s {$sel:httpStatus:DeleteAssociationResponse' :: Int
httpStatus = Int
a} :: DeleteAssociationResponse)
instance Prelude.NFData DeleteAssociationResponse