{-# 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.Config.StartRemediationExecution
(
StartRemediationExecution (..),
newStartRemediationExecution,
startRemediationExecution_configRuleName,
startRemediationExecution_resourceKeys,
StartRemediationExecutionResponse (..),
newStartRemediationExecutionResponse,
startRemediationExecutionResponse_failureMessage,
startRemediationExecutionResponse_failedItems,
startRemediationExecutionResponse_httpStatus,
)
where
import Amazonka.Config.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
data StartRemediationExecution = StartRemediationExecution'
{
StartRemediationExecution -> Text
configRuleName :: Prelude.Text,
StartRemediationExecution -> NonEmpty ResourceKey
resourceKeys :: Prelude.NonEmpty ResourceKey
}
deriving (StartRemediationExecution -> StartRemediationExecution -> Bool
(StartRemediationExecution -> StartRemediationExecution -> Bool)
-> (StartRemediationExecution -> StartRemediationExecution -> Bool)
-> Eq StartRemediationExecution
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartRemediationExecution -> StartRemediationExecution -> Bool
$c/= :: StartRemediationExecution -> StartRemediationExecution -> Bool
== :: StartRemediationExecution -> StartRemediationExecution -> Bool
$c== :: StartRemediationExecution -> StartRemediationExecution -> Bool
Prelude.Eq, ReadPrec [StartRemediationExecution]
ReadPrec StartRemediationExecution
Int -> ReadS StartRemediationExecution
ReadS [StartRemediationExecution]
(Int -> ReadS StartRemediationExecution)
-> ReadS [StartRemediationExecution]
-> ReadPrec StartRemediationExecution
-> ReadPrec [StartRemediationExecution]
-> Read StartRemediationExecution
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartRemediationExecution]
$creadListPrec :: ReadPrec [StartRemediationExecution]
readPrec :: ReadPrec StartRemediationExecution
$creadPrec :: ReadPrec StartRemediationExecution
readList :: ReadS [StartRemediationExecution]
$creadList :: ReadS [StartRemediationExecution]
readsPrec :: Int -> ReadS StartRemediationExecution
$creadsPrec :: Int -> ReadS StartRemediationExecution
Prelude.Read, Int -> StartRemediationExecution -> ShowS
[StartRemediationExecution] -> ShowS
StartRemediationExecution -> String
(Int -> StartRemediationExecution -> ShowS)
-> (StartRemediationExecution -> String)
-> ([StartRemediationExecution] -> ShowS)
-> Show StartRemediationExecution
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartRemediationExecution] -> ShowS
$cshowList :: [StartRemediationExecution] -> ShowS
show :: StartRemediationExecution -> String
$cshow :: StartRemediationExecution -> String
showsPrec :: Int -> StartRemediationExecution -> ShowS
$cshowsPrec :: Int -> StartRemediationExecution -> ShowS
Prelude.Show, (forall x.
StartRemediationExecution -> Rep StartRemediationExecution x)
-> (forall x.
Rep StartRemediationExecution x -> StartRemediationExecution)
-> Generic StartRemediationExecution
forall x.
Rep StartRemediationExecution x -> StartRemediationExecution
forall x.
StartRemediationExecution -> Rep StartRemediationExecution x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartRemediationExecution x -> StartRemediationExecution
$cfrom :: forall x.
StartRemediationExecution -> Rep StartRemediationExecution x
Prelude.Generic)
newStartRemediationExecution ::
Prelude.Text ->
Prelude.NonEmpty ResourceKey ->
StartRemediationExecution
newStartRemediationExecution :: Text -> NonEmpty ResourceKey -> StartRemediationExecution
newStartRemediationExecution
Text
pConfigRuleName_
NonEmpty ResourceKey
pResourceKeys_ =
StartRemediationExecution' :: Text -> NonEmpty ResourceKey -> StartRemediationExecution
StartRemediationExecution'
{ $sel:configRuleName:StartRemediationExecution' :: Text
configRuleName =
Text
pConfigRuleName_,
$sel:resourceKeys:StartRemediationExecution' :: NonEmpty ResourceKey
resourceKeys =
Tagged (NonEmpty ResourceKey) (Identity (NonEmpty ResourceKey))
-> Tagged (NonEmpty ResourceKey) (Identity (NonEmpty ResourceKey))
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced (Tagged (NonEmpty ResourceKey) (Identity (NonEmpty ResourceKey))
-> Tagged (NonEmpty ResourceKey) (Identity (NonEmpty ResourceKey)))
-> NonEmpty ResourceKey -> NonEmpty ResourceKey
forall t b. AReview t b -> b -> t
Lens.# NonEmpty ResourceKey
pResourceKeys_
}
startRemediationExecution_configRuleName :: Lens.Lens' StartRemediationExecution Prelude.Text
startRemediationExecution_configRuleName :: (Text -> f Text)
-> StartRemediationExecution -> f StartRemediationExecution
startRemediationExecution_configRuleName = (StartRemediationExecution -> Text)
-> (StartRemediationExecution -> Text -> StartRemediationExecution)
-> Lens
StartRemediationExecution StartRemediationExecution Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartRemediationExecution' {Text
configRuleName :: Text
$sel:configRuleName:StartRemediationExecution' :: StartRemediationExecution -> Text
configRuleName} -> Text
configRuleName) (\s :: StartRemediationExecution
s@StartRemediationExecution' {} Text
a -> StartRemediationExecution
s {$sel:configRuleName:StartRemediationExecution' :: Text
configRuleName = Text
a} :: StartRemediationExecution)
startRemediationExecution_resourceKeys :: Lens.Lens' StartRemediationExecution (Prelude.NonEmpty ResourceKey)
startRemediationExecution_resourceKeys :: (NonEmpty ResourceKey -> f (NonEmpty ResourceKey))
-> StartRemediationExecution -> f StartRemediationExecution
startRemediationExecution_resourceKeys = (StartRemediationExecution -> NonEmpty ResourceKey)
-> (StartRemediationExecution
-> NonEmpty ResourceKey -> StartRemediationExecution)
-> Lens
StartRemediationExecution
StartRemediationExecution
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartRemediationExecution' {NonEmpty ResourceKey
resourceKeys :: NonEmpty ResourceKey
$sel:resourceKeys:StartRemediationExecution' :: StartRemediationExecution -> NonEmpty ResourceKey
resourceKeys} -> NonEmpty ResourceKey
resourceKeys) (\s :: StartRemediationExecution
s@StartRemediationExecution' {} NonEmpty ResourceKey
a -> StartRemediationExecution
s {$sel:resourceKeys:StartRemediationExecution' :: NonEmpty ResourceKey
resourceKeys = NonEmpty ResourceKey
a} :: StartRemediationExecution) ((NonEmpty ResourceKey -> f (NonEmpty ResourceKey))
-> StartRemediationExecution -> f StartRemediationExecution)
-> ((NonEmpty ResourceKey -> f (NonEmpty ResourceKey))
-> NonEmpty ResourceKey -> f (NonEmpty ResourceKey))
-> (NonEmpty ResourceKey -> f (NonEmpty ResourceKey))
-> StartRemediationExecution
-> f StartRemediationExecution
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (NonEmpty ResourceKey -> f (NonEmpty ResourceKey))
-> NonEmpty ResourceKey -> f (NonEmpty ResourceKey)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
instance Core.AWSRequest StartRemediationExecution where
type
AWSResponse StartRemediationExecution =
StartRemediationExecutionResponse
request :: StartRemediationExecution -> Request StartRemediationExecution
request = Service
-> StartRemediationExecution -> Request StartRemediationExecution
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy StartRemediationExecution
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse StartRemediationExecution)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse StartRemediationExecution))
-> Logger
-> Service
-> Proxy StartRemediationExecution
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse StartRemediationExecution)))
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 (NonEmpty ResourceKey)
-> Int
-> StartRemediationExecutionResponse
StartRemediationExecutionResponse'
(Maybe Text
-> Maybe (NonEmpty ResourceKey)
-> Int
-> StartRemediationExecutionResponse)
-> Either String (Maybe Text)
-> Either
String
(Maybe (NonEmpty ResourceKey)
-> Int -> StartRemediationExecutionResponse)
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
"FailureMessage")
Either
String
(Maybe (NonEmpty ResourceKey)
-> Int -> StartRemediationExecutionResponse)
-> Either String (Maybe (NonEmpty ResourceKey))
-> Either String (Int -> StartRemediationExecutionResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe (NonEmpty ResourceKey))
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"FailedItems")
Either String (Int -> StartRemediationExecutionResponse)
-> Either String Int
-> Either String StartRemediationExecutionResponse
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 StartRemediationExecution
instance Prelude.NFData StartRemediationExecution
instance Core.ToHeaders StartRemediationExecution where
toHeaders :: StartRemediationExecution -> ResponseHeaders
toHeaders =
ResponseHeaders -> StartRemediationExecution -> 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
"StarlingDoveService.StartRemediationExecution" ::
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 StartRemediationExecution where
toJSON :: StartRemediationExecution -> Value
toJSON StartRemediationExecution' {NonEmpty ResourceKey
Text
resourceKeys :: NonEmpty ResourceKey
configRuleName :: Text
$sel:resourceKeys:StartRemediationExecution' :: StartRemediationExecution -> NonEmpty ResourceKey
$sel:configRuleName:StartRemediationExecution' :: StartRemediationExecution -> 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
"ConfigRuleName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
configRuleName),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ResourceKeys" Text -> NonEmpty ResourceKey -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= NonEmpty ResourceKey
resourceKeys)
]
)
instance Core.ToPath StartRemediationExecution where
toPath :: StartRemediationExecution -> ByteString
toPath = ByteString -> StartRemediationExecution -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery StartRemediationExecution where
toQuery :: StartRemediationExecution -> QueryString
toQuery = QueryString -> StartRemediationExecution -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data StartRemediationExecutionResponse = StartRemediationExecutionResponse'
{
StartRemediationExecutionResponse -> Maybe Text
failureMessage :: Prelude.Maybe Prelude.Text,
StartRemediationExecutionResponse -> Maybe (NonEmpty ResourceKey)
failedItems :: Prelude.Maybe (Prelude.NonEmpty ResourceKey),
StartRemediationExecutionResponse -> Int
httpStatus :: Prelude.Int
}
deriving (StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool
(StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool)
-> (StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool)
-> Eq StartRemediationExecutionResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool
$c/= :: StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool
== :: StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool
$c== :: StartRemediationExecutionResponse
-> StartRemediationExecutionResponse -> Bool
Prelude.Eq, ReadPrec [StartRemediationExecutionResponse]
ReadPrec StartRemediationExecutionResponse
Int -> ReadS StartRemediationExecutionResponse
ReadS [StartRemediationExecutionResponse]
(Int -> ReadS StartRemediationExecutionResponse)
-> ReadS [StartRemediationExecutionResponse]
-> ReadPrec StartRemediationExecutionResponse
-> ReadPrec [StartRemediationExecutionResponse]
-> Read StartRemediationExecutionResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [StartRemediationExecutionResponse]
$creadListPrec :: ReadPrec [StartRemediationExecutionResponse]
readPrec :: ReadPrec StartRemediationExecutionResponse
$creadPrec :: ReadPrec StartRemediationExecutionResponse
readList :: ReadS [StartRemediationExecutionResponse]
$creadList :: ReadS [StartRemediationExecutionResponse]
readsPrec :: Int -> ReadS StartRemediationExecutionResponse
$creadsPrec :: Int -> ReadS StartRemediationExecutionResponse
Prelude.Read, Int -> StartRemediationExecutionResponse -> ShowS
[StartRemediationExecutionResponse] -> ShowS
StartRemediationExecutionResponse -> String
(Int -> StartRemediationExecutionResponse -> ShowS)
-> (StartRemediationExecutionResponse -> String)
-> ([StartRemediationExecutionResponse] -> ShowS)
-> Show StartRemediationExecutionResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [StartRemediationExecutionResponse] -> ShowS
$cshowList :: [StartRemediationExecutionResponse] -> ShowS
show :: StartRemediationExecutionResponse -> String
$cshow :: StartRemediationExecutionResponse -> String
showsPrec :: Int -> StartRemediationExecutionResponse -> ShowS
$cshowsPrec :: Int -> StartRemediationExecutionResponse -> ShowS
Prelude.Show, (forall x.
StartRemediationExecutionResponse
-> Rep StartRemediationExecutionResponse x)
-> (forall x.
Rep StartRemediationExecutionResponse x
-> StartRemediationExecutionResponse)
-> Generic StartRemediationExecutionResponse
forall x.
Rep StartRemediationExecutionResponse x
-> StartRemediationExecutionResponse
forall x.
StartRemediationExecutionResponse
-> Rep StartRemediationExecutionResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep StartRemediationExecutionResponse x
-> StartRemediationExecutionResponse
$cfrom :: forall x.
StartRemediationExecutionResponse
-> Rep StartRemediationExecutionResponse x
Prelude.Generic)
newStartRemediationExecutionResponse ::
Prelude.Int ->
StartRemediationExecutionResponse
newStartRemediationExecutionResponse :: Int -> StartRemediationExecutionResponse
newStartRemediationExecutionResponse Int
pHttpStatus_ =
StartRemediationExecutionResponse' :: Maybe Text
-> Maybe (NonEmpty ResourceKey)
-> Int
-> StartRemediationExecutionResponse
StartRemediationExecutionResponse'
{ $sel:failureMessage:StartRemediationExecutionResponse' :: Maybe Text
failureMessage =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:failedItems:StartRemediationExecutionResponse' :: Maybe (NonEmpty ResourceKey)
failedItems = Maybe (NonEmpty ResourceKey)
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:StartRemediationExecutionResponse' :: Int
httpStatus = Int
pHttpStatus_
}
startRemediationExecutionResponse_failureMessage :: Lens.Lens' StartRemediationExecutionResponse (Prelude.Maybe Prelude.Text)
startRemediationExecutionResponse_failureMessage :: (Maybe Text -> f (Maybe Text))
-> StartRemediationExecutionResponse
-> f StartRemediationExecutionResponse
startRemediationExecutionResponse_failureMessage = (StartRemediationExecutionResponse -> Maybe Text)
-> (StartRemediationExecutionResponse
-> Maybe Text -> StartRemediationExecutionResponse)
-> Lens
StartRemediationExecutionResponse
StartRemediationExecutionResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartRemediationExecutionResponse' {Maybe Text
failureMessage :: Maybe Text
$sel:failureMessage:StartRemediationExecutionResponse' :: StartRemediationExecutionResponse -> Maybe Text
failureMessage} -> Maybe Text
failureMessage) (\s :: StartRemediationExecutionResponse
s@StartRemediationExecutionResponse' {} Maybe Text
a -> StartRemediationExecutionResponse
s {$sel:failureMessage:StartRemediationExecutionResponse' :: Maybe Text
failureMessage = Maybe Text
a} :: StartRemediationExecutionResponse)
startRemediationExecutionResponse_failedItems :: Lens.Lens' StartRemediationExecutionResponse (Prelude.Maybe (Prelude.NonEmpty ResourceKey))
startRemediationExecutionResponse_failedItems :: (Maybe (NonEmpty ResourceKey) -> f (Maybe (NonEmpty ResourceKey)))
-> StartRemediationExecutionResponse
-> f StartRemediationExecutionResponse
startRemediationExecutionResponse_failedItems = (StartRemediationExecutionResponse -> Maybe (NonEmpty ResourceKey))
-> (StartRemediationExecutionResponse
-> Maybe (NonEmpty ResourceKey)
-> StartRemediationExecutionResponse)
-> Lens
StartRemediationExecutionResponse
StartRemediationExecutionResponse
(Maybe (NonEmpty ResourceKey))
(Maybe (NonEmpty ResourceKey))
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartRemediationExecutionResponse' {Maybe (NonEmpty ResourceKey)
failedItems :: Maybe (NonEmpty ResourceKey)
$sel:failedItems:StartRemediationExecutionResponse' :: StartRemediationExecutionResponse -> Maybe (NonEmpty ResourceKey)
failedItems} -> Maybe (NonEmpty ResourceKey)
failedItems) (\s :: StartRemediationExecutionResponse
s@StartRemediationExecutionResponse' {} Maybe (NonEmpty ResourceKey)
a -> StartRemediationExecutionResponse
s {$sel:failedItems:StartRemediationExecutionResponse' :: Maybe (NonEmpty ResourceKey)
failedItems = Maybe (NonEmpty ResourceKey)
a} :: StartRemediationExecutionResponse) ((Maybe (NonEmpty ResourceKey) -> f (Maybe (NonEmpty ResourceKey)))
-> StartRemediationExecutionResponse
-> f StartRemediationExecutionResponse)
-> ((Maybe (NonEmpty ResourceKey)
-> f (Maybe (NonEmpty ResourceKey)))
-> Maybe (NonEmpty ResourceKey)
-> f (Maybe (NonEmpty ResourceKey)))
-> (Maybe (NonEmpty ResourceKey)
-> f (Maybe (NonEmpty ResourceKey)))
-> StartRemediationExecutionResponse
-> f StartRemediationExecutionResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
-> Iso
(Maybe (NonEmpty ResourceKey))
(Maybe (NonEmpty ResourceKey))
(Maybe (NonEmpty ResourceKey))
(Maybe (NonEmpty ResourceKey))
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
(NonEmpty ResourceKey)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
startRemediationExecutionResponse_httpStatus :: Lens.Lens' StartRemediationExecutionResponse Prelude.Int
startRemediationExecutionResponse_httpStatus :: (Int -> f Int)
-> StartRemediationExecutionResponse
-> f StartRemediationExecutionResponse
startRemediationExecutionResponse_httpStatus = (StartRemediationExecutionResponse -> Int)
-> (StartRemediationExecutionResponse
-> Int -> StartRemediationExecutionResponse)
-> Lens
StartRemediationExecutionResponse
StartRemediationExecutionResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\StartRemediationExecutionResponse' {Int
httpStatus :: Int
$sel:httpStatus:StartRemediationExecutionResponse' :: StartRemediationExecutionResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: StartRemediationExecutionResponse
s@StartRemediationExecutionResponse' {} Int
a -> StartRemediationExecutionResponse
s {$sel:httpStatus:StartRemediationExecutionResponse' :: Int
httpStatus = Int
a} :: StartRemediationExecutionResponse)
instance
Prelude.NFData
StartRemediationExecutionResponse