{-# 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.DeregisterPatchBaselineForPatchGroup
(
DeregisterPatchBaselineForPatchGroup (..),
newDeregisterPatchBaselineForPatchGroup,
deregisterPatchBaselineForPatchGroup_baselineId,
deregisterPatchBaselineForPatchGroup_patchGroup,
DeregisterPatchBaselineForPatchGroupResponse (..),
newDeregisterPatchBaselineForPatchGroupResponse,
deregisterPatchBaselineForPatchGroupResponse_baselineId,
deregisterPatchBaselineForPatchGroupResponse_patchGroup,
deregisterPatchBaselineForPatchGroupResponse_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 DeregisterPatchBaselineForPatchGroup = DeregisterPatchBaselineForPatchGroup'
{
DeregisterPatchBaselineForPatchGroup -> Text
baselineId :: Prelude.Text,
DeregisterPatchBaselineForPatchGroup -> Text
patchGroup :: Prelude.Text
}
deriving (DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool
(DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool)
-> (DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool)
-> Eq DeregisterPatchBaselineForPatchGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool
$c/= :: DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool
== :: DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool
$c== :: DeregisterPatchBaselineForPatchGroup
-> DeregisterPatchBaselineForPatchGroup -> Bool
Prelude.Eq, ReadPrec [DeregisterPatchBaselineForPatchGroup]
ReadPrec DeregisterPatchBaselineForPatchGroup
Int -> ReadS DeregisterPatchBaselineForPatchGroup
ReadS [DeregisterPatchBaselineForPatchGroup]
(Int -> ReadS DeregisterPatchBaselineForPatchGroup)
-> ReadS [DeregisterPatchBaselineForPatchGroup]
-> ReadPrec DeregisterPatchBaselineForPatchGroup
-> ReadPrec [DeregisterPatchBaselineForPatchGroup]
-> Read DeregisterPatchBaselineForPatchGroup
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeregisterPatchBaselineForPatchGroup]
$creadListPrec :: ReadPrec [DeregisterPatchBaselineForPatchGroup]
readPrec :: ReadPrec DeregisterPatchBaselineForPatchGroup
$creadPrec :: ReadPrec DeregisterPatchBaselineForPatchGroup
readList :: ReadS [DeregisterPatchBaselineForPatchGroup]
$creadList :: ReadS [DeregisterPatchBaselineForPatchGroup]
readsPrec :: Int -> ReadS DeregisterPatchBaselineForPatchGroup
$creadsPrec :: Int -> ReadS DeregisterPatchBaselineForPatchGroup
Prelude.Read, Int -> DeregisterPatchBaselineForPatchGroup -> ShowS
[DeregisterPatchBaselineForPatchGroup] -> ShowS
DeregisterPatchBaselineForPatchGroup -> String
(Int -> DeregisterPatchBaselineForPatchGroup -> ShowS)
-> (DeregisterPatchBaselineForPatchGroup -> String)
-> ([DeregisterPatchBaselineForPatchGroup] -> ShowS)
-> Show DeregisterPatchBaselineForPatchGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeregisterPatchBaselineForPatchGroup] -> ShowS
$cshowList :: [DeregisterPatchBaselineForPatchGroup] -> ShowS
show :: DeregisterPatchBaselineForPatchGroup -> String
$cshow :: DeregisterPatchBaselineForPatchGroup -> String
showsPrec :: Int -> DeregisterPatchBaselineForPatchGroup -> ShowS
$cshowsPrec :: Int -> DeregisterPatchBaselineForPatchGroup -> ShowS
Prelude.Show, (forall x.
DeregisterPatchBaselineForPatchGroup
-> Rep DeregisterPatchBaselineForPatchGroup x)
-> (forall x.
Rep DeregisterPatchBaselineForPatchGroup x
-> DeregisterPatchBaselineForPatchGroup)
-> Generic DeregisterPatchBaselineForPatchGroup
forall x.
Rep DeregisterPatchBaselineForPatchGroup x
-> DeregisterPatchBaselineForPatchGroup
forall x.
DeregisterPatchBaselineForPatchGroup
-> Rep DeregisterPatchBaselineForPatchGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeregisterPatchBaselineForPatchGroup x
-> DeregisterPatchBaselineForPatchGroup
$cfrom :: forall x.
DeregisterPatchBaselineForPatchGroup
-> Rep DeregisterPatchBaselineForPatchGroup x
Prelude.Generic)
newDeregisterPatchBaselineForPatchGroup ::
Prelude.Text ->
Prelude.Text ->
DeregisterPatchBaselineForPatchGroup
newDeregisterPatchBaselineForPatchGroup :: Text -> Text -> DeregisterPatchBaselineForPatchGroup
newDeregisterPatchBaselineForPatchGroup
Text
pBaselineId_
Text
pPatchGroup_ =
DeregisterPatchBaselineForPatchGroup' :: Text -> Text -> DeregisterPatchBaselineForPatchGroup
DeregisterPatchBaselineForPatchGroup'
{ $sel:baselineId:DeregisterPatchBaselineForPatchGroup' :: Text
baselineId =
Text
pBaselineId_,
$sel:patchGroup:DeregisterPatchBaselineForPatchGroup' :: Text
patchGroup = Text
pPatchGroup_
}
deregisterPatchBaselineForPatchGroup_baselineId :: Lens.Lens' DeregisterPatchBaselineForPatchGroup Prelude.Text
deregisterPatchBaselineForPatchGroup_baselineId :: (Text -> f Text)
-> DeregisterPatchBaselineForPatchGroup
-> f DeregisterPatchBaselineForPatchGroup
deregisterPatchBaselineForPatchGroup_baselineId = (DeregisterPatchBaselineForPatchGroup -> Text)
-> (DeregisterPatchBaselineForPatchGroup
-> Text -> DeregisterPatchBaselineForPatchGroup)
-> Lens
DeregisterPatchBaselineForPatchGroup
DeregisterPatchBaselineForPatchGroup
Text
Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeregisterPatchBaselineForPatchGroup' {Text
baselineId :: Text
$sel:baselineId:DeregisterPatchBaselineForPatchGroup' :: DeregisterPatchBaselineForPatchGroup -> Text
baselineId} -> Text
baselineId) (\s :: DeregisterPatchBaselineForPatchGroup
s@DeregisterPatchBaselineForPatchGroup' {} Text
a -> DeregisterPatchBaselineForPatchGroup
s {$sel:baselineId:DeregisterPatchBaselineForPatchGroup' :: Text
baselineId = Text
a} :: DeregisterPatchBaselineForPatchGroup)
deregisterPatchBaselineForPatchGroup_patchGroup :: Lens.Lens' DeregisterPatchBaselineForPatchGroup Prelude.Text
deregisterPatchBaselineForPatchGroup_patchGroup :: (Text -> f Text)
-> DeregisterPatchBaselineForPatchGroup
-> f DeregisterPatchBaselineForPatchGroup
deregisterPatchBaselineForPatchGroup_patchGroup = (DeregisterPatchBaselineForPatchGroup -> Text)
-> (DeregisterPatchBaselineForPatchGroup
-> Text -> DeregisterPatchBaselineForPatchGroup)
-> Lens
DeregisterPatchBaselineForPatchGroup
DeregisterPatchBaselineForPatchGroup
Text
Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeregisterPatchBaselineForPatchGroup' {Text
patchGroup :: Text
$sel:patchGroup:DeregisterPatchBaselineForPatchGroup' :: DeregisterPatchBaselineForPatchGroup -> Text
patchGroup} -> Text
patchGroup) (\s :: DeregisterPatchBaselineForPatchGroup
s@DeregisterPatchBaselineForPatchGroup' {} Text
a -> DeregisterPatchBaselineForPatchGroup
s {$sel:patchGroup:DeregisterPatchBaselineForPatchGroup' :: Text
patchGroup = Text
a} :: DeregisterPatchBaselineForPatchGroup)
instance
Core.AWSRequest
DeregisterPatchBaselineForPatchGroup
where
type
AWSResponse DeregisterPatchBaselineForPatchGroup =
DeregisterPatchBaselineForPatchGroupResponse
request :: DeregisterPatchBaselineForPatchGroup
-> Request DeregisterPatchBaselineForPatchGroup
request = Service
-> DeregisterPatchBaselineForPatchGroup
-> Request DeregisterPatchBaselineForPatchGroup
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DeregisterPatchBaselineForPatchGroup
-> ClientResponse ClientBody
-> m (Either
Error
(ClientResponse
(AWSResponse DeregisterPatchBaselineForPatchGroup)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either
String (AWSResponse DeregisterPatchBaselineForPatchGroup))
-> Logger
-> Service
-> Proxy DeregisterPatchBaselineForPatchGroup
-> ClientResponse ClientBody
-> m (Either
Error
(ClientResponse
(AWSResponse DeregisterPatchBaselineForPatchGroup)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Maybe Text
-> Maybe Text
-> Int
-> DeregisterPatchBaselineForPatchGroupResponse
DeregisterPatchBaselineForPatchGroupResponse'
(Maybe Text
-> Maybe Text
-> Int
-> DeregisterPatchBaselineForPatchGroupResponse)
-> Either String (Maybe Text)
-> Either
String
(Maybe Text -> Int -> DeregisterPatchBaselineForPatchGroupResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"BaselineId")
Either
String
(Maybe Text -> Int -> DeregisterPatchBaselineForPatchGroupResponse)
-> Either String (Maybe Text)
-> Either
String (Int -> DeregisterPatchBaselineForPatchGroupResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"PatchGroup")
Either String (Int -> DeregisterPatchBaselineForPatchGroupResponse)
-> Either String Int
-> Either String DeregisterPatchBaselineForPatchGroupResponse
forall (f :: * -> *) a b. Applicative f => 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
DeregisterPatchBaselineForPatchGroup
instance
Prelude.NFData
DeregisterPatchBaselineForPatchGroup
instance
Core.ToHeaders
DeregisterPatchBaselineForPatchGroup
where
toHeaders :: DeregisterPatchBaselineForPatchGroup -> ResponseHeaders
toHeaders =
ResponseHeaders
-> DeregisterPatchBaselineForPatchGroup -> 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.DeregisterPatchBaselineForPatchGroup" ::
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
DeregisterPatchBaselineForPatchGroup
where
toJSON :: DeregisterPatchBaselineForPatchGroup -> Value
toJSON DeregisterPatchBaselineForPatchGroup' {Text
patchGroup :: Text
baselineId :: Text
$sel:patchGroup:DeregisterPatchBaselineForPatchGroup' :: DeregisterPatchBaselineForPatchGroup -> Text
$sel:baselineId:DeregisterPatchBaselineForPatchGroup' :: DeregisterPatchBaselineForPatchGroup -> 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
"BaselineId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
baselineId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"PatchGroup" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
patchGroup)
]
)
instance
Core.ToPath
DeregisterPatchBaselineForPatchGroup
where
toPath :: DeregisterPatchBaselineForPatchGroup -> ByteString
toPath = ByteString -> DeregisterPatchBaselineForPatchGroup -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance
Core.ToQuery
DeregisterPatchBaselineForPatchGroup
where
toQuery :: DeregisterPatchBaselineForPatchGroup -> QueryString
toQuery = QueryString -> DeregisterPatchBaselineForPatchGroup -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DeregisterPatchBaselineForPatchGroupResponse = DeregisterPatchBaselineForPatchGroupResponse'
{
DeregisterPatchBaselineForPatchGroupResponse -> Maybe Text
baselineId :: Prelude.Maybe Prelude.Text,
DeregisterPatchBaselineForPatchGroupResponse -> Maybe Text
patchGroup :: Prelude.Maybe Prelude.Text,
DeregisterPatchBaselineForPatchGroupResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool
(DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool)
-> (DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool)
-> Eq DeregisterPatchBaselineForPatchGroupResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool
$c/= :: DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool
== :: DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool
$c== :: DeregisterPatchBaselineForPatchGroupResponse
-> DeregisterPatchBaselineForPatchGroupResponse -> Bool
Prelude.Eq, ReadPrec [DeregisterPatchBaselineForPatchGroupResponse]
ReadPrec DeregisterPatchBaselineForPatchGroupResponse
Int -> ReadS DeregisterPatchBaselineForPatchGroupResponse
ReadS [DeregisterPatchBaselineForPatchGroupResponse]
(Int -> ReadS DeregisterPatchBaselineForPatchGroupResponse)
-> ReadS [DeregisterPatchBaselineForPatchGroupResponse]
-> ReadPrec DeregisterPatchBaselineForPatchGroupResponse
-> ReadPrec [DeregisterPatchBaselineForPatchGroupResponse]
-> Read DeregisterPatchBaselineForPatchGroupResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeregisterPatchBaselineForPatchGroupResponse]
$creadListPrec :: ReadPrec [DeregisterPatchBaselineForPatchGroupResponse]
readPrec :: ReadPrec DeregisterPatchBaselineForPatchGroupResponse
$creadPrec :: ReadPrec DeregisterPatchBaselineForPatchGroupResponse
readList :: ReadS [DeregisterPatchBaselineForPatchGroupResponse]
$creadList :: ReadS [DeregisterPatchBaselineForPatchGroupResponse]
readsPrec :: Int -> ReadS DeregisterPatchBaselineForPatchGroupResponse
$creadsPrec :: Int -> ReadS DeregisterPatchBaselineForPatchGroupResponse
Prelude.Read, Int -> DeregisterPatchBaselineForPatchGroupResponse -> ShowS
[DeregisterPatchBaselineForPatchGroupResponse] -> ShowS
DeregisterPatchBaselineForPatchGroupResponse -> String
(Int -> DeregisterPatchBaselineForPatchGroupResponse -> ShowS)
-> (DeregisterPatchBaselineForPatchGroupResponse -> String)
-> ([DeregisterPatchBaselineForPatchGroupResponse] -> ShowS)
-> Show DeregisterPatchBaselineForPatchGroupResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeregisterPatchBaselineForPatchGroupResponse] -> ShowS
$cshowList :: [DeregisterPatchBaselineForPatchGroupResponse] -> ShowS
show :: DeregisterPatchBaselineForPatchGroupResponse -> String
$cshow :: DeregisterPatchBaselineForPatchGroupResponse -> String
showsPrec :: Int -> DeregisterPatchBaselineForPatchGroupResponse -> ShowS
$cshowsPrec :: Int -> DeregisterPatchBaselineForPatchGroupResponse -> ShowS
Prelude.Show, (forall x.
DeregisterPatchBaselineForPatchGroupResponse
-> Rep DeregisterPatchBaselineForPatchGroupResponse x)
-> (forall x.
Rep DeregisterPatchBaselineForPatchGroupResponse x
-> DeregisterPatchBaselineForPatchGroupResponse)
-> Generic DeregisterPatchBaselineForPatchGroupResponse
forall x.
Rep DeregisterPatchBaselineForPatchGroupResponse x
-> DeregisterPatchBaselineForPatchGroupResponse
forall x.
DeregisterPatchBaselineForPatchGroupResponse
-> Rep DeregisterPatchBaselineForPatchGroupResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeregisterPatchBaselineForPatchGroupResponse x
-> DeregisterPatchBaselineForPatchGroupResponse
$cfrom :: forall x.
DeregisterPatchBaselineForPatchGroupResponse
-> Rep DeregisterPatchBaselineForPatchGroupResponse x
Prelude.Generic)
newDeregisterPatchBaselineForPatchGroupResponse ::
Prelude.Int ->
DeregisterPatchBaselineForPatchGroupResponse
newDeregisterPatchBaselineForPatchGroupResponse :: Int -> DeregisterPatchBaselineForPatchGroupResponse
newDeregisterPatchBaselineForPatchGroupResponse
Int
pHttpStatus_ =
DeregisterPatchBaselineForPatchGroupResponse' :: Maybe Text
-> Maybe Text
-> Int
-> DeregisterPatchBaselineForPatchGroupResponse
DeregisterPatchBaselineForPatchGroupResponse'
{ $sel:baselineId:DeregisterPatchBaselineForPatchGroupResponse' :: Maybe Text
baselineId =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:patchGroup:DeregisterPatchBaselineForPatchGroupResponse' :: Maybe Text
patchGroup = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:DeregisterPatchBaselineForPatchGroupResponse' :: Int
httpStatus = Int
pHttpStatus_
}
deregisterPatchBaselineForPatchGroupResponse_baselineId :: Lens.Lens' DeregisterPatchBaselineForPatchGroupResponse (Prelude.Maybe Prelude.Text)
deregisterPatchBaselineForPatchGroupResponse_baselineId :: (Maybe Text -> f (Maybe Text))
-> DeregisterPatchBaselineForPatchGroupResponse
-> f DeregisterPatchBaselineForPatchGroupResponse
deregisterPatchBaselineForPatchGroupResponse_baselineId = (DeregisterPatchBaselineForPatchGroupResponse -> Maybe Text)
-> (DeregisterPatchBaselineForPatchGroupResponse
-> Maybe Text -> DeregisterPatchBaselineForPatchGroupResponse)
-> Lens
DeregisterPatchBaselineForPatchGroupResponse
DeregisterPatchBaselineForPatchGroupResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeregisterPatchBaselineForPatchGroupResponse' {Maybe Text
baselineId :: Maybe Text
$sel:baselineId:DeregisterPatchBaselineForPatchGroupResponse' :: DeregisterPatchBaselineForPatchGroupResponse -> Maybe Text
baselineId} -> Maybe Text
baselineId) (\s :: DeregisterPatchBaselineForPatchGroupResponse
s@DeregisterPatchBaselineForPatchGroupResponse' {} Maybe Text
a -> DeregisterPatchBaselineForPatchGroupResponse
s {$sel:baselineId:DeregisterPatchBaselineForPatchGroupResponse' :: Maybe Text
baselineId = Maybe Text
a} :: DeregisterPatchBaselineForPatchGroupResponse)
deregisterPatchBaselineForPatchGroupResponse_patchGroup :: Lens.Lens' DeregisterPatchBaselineForPatchGroupResponse (Prelude.Maybe Prelude.Text)
deregisterPatchBaselineForPatchGroupResponse_patchGroup :: (Maybe Text -> f (Maybe Text))
-> DeregisterPatchBaselineForPatchGroupResponse
-> f DeregisterPatchBaselineForPatchGroupResponse
deregisterPatchBaselineForPatchGroupResponse_patchGroup = (DeregisterPatchBaselineForPatchGroupResponse -> Maybe Text)
-> (DeregisterPatchBaselineForPatchGroupResponse
-> Maybe Text -> DeregisterPatchBaselineForPatchGroupResponse)
-> Lens
DeregisterPatchBaselineForPatchGroupResponse
DeregisterPatchBaselineForPatchGroupResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeregisterPatchBaselineForPatchGroupResponse' {Maybe Text
patchGroup :: Maybe Text
$sel:patchGroup:DeregisterPatchBaselineForPatchGroupResponse' :: DeregisterPatchBaselineForPatchGroupResponse -> Maybe Text
patchGroup} -> Maybe Text
patchGroup) (\s :: DeregisterPatchBaselineForPatchGroupResponse
s@DeregisterPatchBaselineForPatchGroupResponse' {} Maybe Text
a -> DeregisterPatchBaselineForPatchGroupResponse
s {$sel:patchGroup:DeregisterPatchBaselineForPatchGroupResponse' :: Maybe Text
patchGroup = Maybe Text
a} :: DeregisterPatchBaselineForPatchGroupResponse)
deregisterPatchBaselineForPatchGroupResponse_httpStatus :: Lens.Lens' DeregisterPatchBaselineForPatchGroupResponse Prelude.Int
deregisterPatchBaselineForPatchGroupResponse_httpStatus :: (Int -> f Int)
-> DeregisterPatchBaselineForPatchGroupResponse
-> f DeregisterPatchBaselineForPatchGroupResponse
deregisterPatchBaselineForPatchGroupResponse_httpStatus = (DeregisterPatchBaselineForPatchGroupResponse -> Int)
-> (DeregisterPatchBaselineForPatchGroupResponse
-> Int -> DeregisterPatchBaselineForPatchGroupResponse)
-> Lens
DeregisterPatchBaselineForPatchGroupResponse
DeregisterPatchBaselineForPatchGroupResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeregisterPatchBaselineForPatchGroupResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeregisterPatchBaselineForPatchGroupResponse' :: DeregisterPatchBaselineForPatchGroupResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeregisterPatchBaselineForPatchGroupResponse
s@DeregisterPatchBaselineForPatchGroupResponse' {} Int
a -> DeregisterPatchBaselineForPatchGroupResponse
s {$sel:httpStatus:DeregisterPatchBaselineForPatchGroupResponse' :: Int
httpStatus = Int
a} :: DeregisterPatchBaselineForPatchGroupResponse)
instance
Prelude.NFData
DeregisterPatchBaselineForPatchGroupResponse