{-# 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.Kafka.UpdateClusterConfiguration
(
UpdateClusterConfiguration (..),
newUpdateClusterConfiguration,
updateClusterConfiguration_clusterArn,
updateClusterConfiguration_currentVersion,
updateClusterConfiguration_configurationInfo,
UpdateClusterConfigurationResponse (..),
newUpdateClusterConfigurationResponse,
updateClusterConfigurationResponse_clusterArn,
updateClusterConfigurationResponse_clusterOperationArn,
updateClusterConfigurationResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.Kafka.Types
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 UpdateClusterConfiguration = UpdateClusterConfiguration'
{
UpdateClusterConfiguration -> Text
clusterArn :: Prelude.Text,
UpdateClusterConfiguration -> Text
currentVersion :: Prelude.Text,
UpdateClusterConfiguration -> ConfigurationInfo
configurationInfo :: ConfigurationInfo
}
deriving (UpdateClusterConfiguration -> UpdateClusterConfiguration -> Bool
(UpdateClusterConfiguration -> UpdateClusterConfiguration -> Bool)
-> (UpdateClusterConfiguration
-> UpdateClusterConfiguration -> Bool)
-> Eq UpdateClusterConfiguration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateClusterConfiguration -> UpdateClusterConfiguration -> Bool
$c/= :: UpdateClusterConfiguration -> UpdateClusterConfiguration -> Bool
== :: UpdateClusterConfiguration -> UpdateClusterConfiguration -> Bool
$c== :: UpdateClusterConfiguration -> UpdateClusterConfiguration -> Bool
Prelude.Eq, ReadPrec [UpdateClusterConfiguration]
ReadPrec UpdateClusterConfiguration
Int -> ReadS UpdateClusterConfiguration
ReadS [UpdateClusterConfiguration]
(Int -> ReadS UpdateClusterConfiguration)
-> ReadS [UpdateClusterConfiguration]
-> ReadPrec UpdateClusterConfiguration
-> ReadPrec [UpdateClusterConfiguration]
-> Read UpdateClusterConfiguration
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateClusterConfiguration]
$creadListPrec :: ReadPrec [UpdateClusterConfiguration]
readPrec :: ReadPrec UpdateClusterConfiguration
$creadPrec :: ReadPrec UpdateClusterConfiguration
readList :: ReadS [UpdateClusterConfiguration]
$creadList :: ReadS [UpdateClusterConfiguration]
readsPrec :: Int -> ReadS UpdateClusterConfiguration
$creadsPrec :: Int -> ReadS UpdateClusterConfiguration
Prelude.Read, Int -> UpdateClusterConfiguration -> ShowS
[UpdateClusterConfiguration] -> ShowS
UpdateClusterConfiguration -> String
(Int -> UpdateClusterConfiguration -> ShowS)
-> (UpdateClusterConfiguration -> String)
-> ([UpdateClusterConfiguration] -> ShowS)
-> Show UpdateClusterConfiguration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateClusterConfiguration] -> ShowS
$cshowList :: [UpdateClusterConfiguration] -> ShowS
show :: UpdateClusterConfiguration -> String
$cshow :: UpdateClusterConfiguration -> String
showsPrec :: Int -> UpdateClusterConfiguration -> ShowS
$cshowsPrec :: Int -> UpdateClusterConfiguration -> ShowS
Prelude.Show, (forall x.
UpdateClusterConfiguration -> Rep UpdateClusterConfiguration x)
-> (forall x.
Rep UpdateClusterConfiguration x -> UpdateClusterConfiguration)
-> Generic UpdateClusterConfiguration
forall x.
Rep UpdateClusterConfiguration x -> UpdateClusterConfiguration
forall x.
UpdateClusterConfiguration -> Rep UpdateClusterConfiguration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateClusterConfiguration x -> UpdateClusterConfiguration
$cfrom :: forall x.
UpdateClusterConfiguration -> Rep UpdateClusterConfiguration x
Prelude.Generic)
newUpdateClusterConfiguration ::
Prelude.Text ->
Prelude.Text ->
ConfigurationInfo ->
UpdateClusterConfiguration
newUpdateClusterConfiguration :: Text -> Text -> ConfigurationInfo -> UpdateClusterConfiguration
newUpdateClusterConfiguration
Text
pClusterArn_
Text
pCurrentVersion_
ConfigurationInfo
pConfigurationInfo_ =
UpdateClusterConfiguration' :: Text -> Text -> ConfigurationInfo -> UpdateClusterConfiguration
UpdateClusterConfiguration'
{ $sel:clusterArn:UpdateClusterConfiguration' :: Text
clusterArn =
Text
pClusterArn_,
$sel:currentVersion:UpdateClusterConfiguration' :: Text
currentVersion = Text
pCurrentVersion_,
$sel:configurationInfo:UpdateClusterConfiguration' :: ConfigurationInfo
configurationInfo = ConfigurationInfo
pConfigurationInfo_
}
updateClusterConfiguration_clusterArn :: Lens.Lens' UpdateClusterConfiguration Prelude.Text
updateClusterConfiguration_clusterArn :: (Text -> f Text)
-> UpdateClusterConfiguration -> f UpdateClusterConfiguration
updateClusterConfiguration_clusterArn = (UpdateClusterConfiguration -> Text)
-> (UpdateClusterConfiguration
-> Text -> UpdateClusterConfiguration)
-> Lens
UpdateClusterConfiguration UpdateClusterConfiguration Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateClusterConfiguration' {Text
clusterArn :: Text
$sel:clusterArn:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> Text
clusterArn} -> Text
clusterArn) (\s :: UpdateClusterConfiguration
s@UpdateClusterConfiguration' {} Text
a -> UpdateClusterConfiguration
s {$sel:clusterArn:UpdateClusterConfiguration' :: Text
clusterArn = Text
a} :: UpdateClusterConfiguration)
updateClusterConfiguration_currentVersion :: Lens.Lens' UpdateClusterConfiguration Prelude.Text
updateClusterConfiguration_currentVersion :: (Text -> f Text)
-> UpdateClusterConfiguration -> f UpdateClusterConfiguration
updateClusterConfiguration_currentVersion = (UpdateClusterConfiguration -> Text)
-> (UpdateClusterConfiguration
-> Text -> UpdateClusterConfiguration)
-> Lens
UpdateClusterConfiguration UpdateClusterConfiguration Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateClusterConfiguration' {Text
currentVersion :: Text
$sel:currentVersion:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> Text
currentVersion} -> Text
currentVersion) (\s :: UpdateClusterConfiguration
s@UpdateClusterConfiguration' {} Text
a -> UpdateClusterConfiguration
s {$sel:currentVersion:UpdateClusterConfiguration' :: Text
currentVersion = Text
a} :: UpdateClusterConfiguration)
updateClusterConfiguration_configurationInfo :: Lens.Lens' UpdateClusterConfiguration ConfigurationInfo
updateClusterConfiguration_configurationInfo :: (ConfigurationInfo -> f ConfigurationInfo)
-> UpdateClusterConfiguration -> f UpdateClusterConfiguration
updateClusterConfiguration_configurationInfo = (UpdateClusterConfiguration -> ConfigurationInfo)
-> (UpdateClusterConfiguration
-> ConfigurationInfo -> UpdateClusterConfiguration)
-> Lens
UpdateClusterConfiguration
UpdateClusterConfiguration
ConfigurationInfo
ConfigurationInfo
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateClusterConfiguration' {ConfigurationInfo
configurationInfo :: ConfigurationInfo
$sel:configurationInfo:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> ConfigurationInfo
configurationInfo} -> ConfigurationInfo
configurationInfo) (\s :: UpdateClusterConfiguration
s@UpdateClusterConfiguration' {} ConfigurationInfo
a -> UpdateClusterConfiguration
s {$sel:configurationInfo:UpdateClusterConfiguration' :: ConfigurationInfo
configurationInfo = ConfigurationInfo
a} :: UpdateClusterConfiguration)
instance Core.AWSRequest UpdateClusterConfiguration where
type
AWSResponse UpdateClusterConfiguration =
UpdateClusterConfigurationResponse
request :: UpdateClusterConfiguration -> Request UpdateClusterConfiguration
request = Service
-> UpdateClusterConfiguration -> Request UpdateClusterConfiguration
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateClusterConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateClusterConfiguration)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse UpdateClusterConfiguration))
-> Logger
-> Service
-> Proxy UpdateClusterConfiguration
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateClusterConfiguration)))
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 -> UpdateClusterConfigurationResponse
UpdateClusterConfigurationResponse'
(Maybe Text
-> Maybe Text -> Int -> UpdateClusterConfigurationResponse)
-> Either String (Maybe Text)
-> Either
String (Maybe Text -> Int -> UpdateClusterConfigurationResponse)
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
"clusterArn")
Either
String (Maybe Text -> Int -> UpdateClusterConfigurationResponse)
-> Either String (Maybe Text)
-> Either String (Int -> UpdateClusterConfigurationResponse)
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
"clusterOperationArn")
Either String (Int -> UpdateClusterConfigurationResponse)
-> Either String Int
-> Either String UpdateClusterConfigurationResponse
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 UpdateClusterConfiguration
instance Prelude.NFData UpdateClusterConfiguration
instance Core.ToHeaders UpdateClusterConfiguration where
toHeaders :: UpdateClusterConfiguration -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateClusterConfiguration -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ 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 UpdateClusterConfiguration where
toJSON :: UpdateClusterConfiguration -> Value
toJSON UpdateClusterConfiguration' {Text
ConfigurationInfo
configurationInfo :: ConfigurationInfo
currentVersion :: Text
clusterArn :: Text
$sel:configurationInfo:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> ConfigurationInfo
$sel:currentVersion:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> Text
$sel:clusterArn:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> 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
"currentVersion" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
currentVersion),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"configurationInfo" Text -> ConfigurationInfo -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= ConfigurationInfo
configurationInfo)
]
)
instance Core.ToPath UpdateClusterConfiguration where
toPath :: UpdateClusterConfiguration -> ByteString
toPath UpdateClusterConfiguration' {Text
ConfigurationInfo
configurationInfo :: ConfigurationInfo
currentVersion :: Text
clusterArn :: Text
$sel:configurationInfo:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> ConfigurationInfo
$sel:currentVersion:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> Text
$sel:clusterArn:UpdateClusterConfiguration' :: UpdateClusterConfiguration -> Text
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/v1/clusters/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
clusterArn,
ByteString
"/configuration"
]
instance Core.ToQuery UpdateClusterConfiguration where
toQuery :: UpdateClusterConfiguration -> QueryString
toQuery = QueryString -> UpdateClusterConfiguration -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateClusterConfigurationResponse = UpdateClusterConfigurationResponse'
{
UpdateClusterConfigurationResponse -> Maybe Text
clusterArn :: Prelude.Maybe Prelude.Text,
UpdateClusterConfigurationResponse -> Maybe Text
clusterOperationArn :: Prelude.Maybe Prelude.Text,
UpdateClusterConfigurationResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool
(UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool)
-> (UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool)
-> Eq UpdateClusterConfigurationResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool
$c/= :: UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool
== :: UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool
$c== :: UpdateClusterConfigurationResponse
-> UpdateClusterConfigurationResponse -> Bool
Prelude.Eq, ReadPrec [UpdateClusterConfigurationResponse]
ReadPrec UpdateClusterConfigurationResponse
Int -> ReadS UpdateClusterConfigurationResponse
ReadS [UpdateClusterConfigurationResponse]
(Int -> ReadS UpdateClusterConfigurationResponse)
-> ReadS [UpdateClusterConfigurationResponse]
-> ReadPrec UpdateClusterConfigurationResponse
-> ReadPrec [UpdateClusterConfigurationResponse]
-> Read UpdateClusterConfigurationResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateClusterConfigurationResponse]
$creadListPrec :: ReadPrec [UpdateClusterConfigurationResponse]
readPrec :: ReadPrec UpdateClusterConfigurationResponse
$creadPrec :: ReadPrec UpdateClusterConfigurationResponse
readList :: ReadS [UpdateClusterConfigurationResponse]
$creadList :: ReadS [UpdateClusterConfigurationResponse]
readsPrec :: Int -> ReadS UpdateClusterConfigurationResponse
$creadsPrec :: Int -> ReadS UpdateClusterConfigurationResponse
Prelude.Read, Int -> UpdateClusterConfigurationResponse -> ShowS
[UpdateClusterConfigurationResponse] -> ShowS
UpdateClusterConfigurationResponse -> String
(Int -> UpdateClusterConfigurationResponse -> ShowS)
-> (UpdateClusterConfigurationResponse -> String)
-> ([UpdateClusterConfigurationResponse] -> ShowS)
-> Show UpdateClusterConfigurationResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateClusterConfigurationResponse] -> ShowS
$cshowList :: [UpdateClusterConfigurationResponse] -> ShowS
show :: UpdateClusterConfigurationResponse -> String
$cshow :: UpdateClusterConfigurationResponse -> String
showsPrec :: Int -> UpdateClusterConfigurationResponse -> ShowS
$cshowsPrec :: Int -> UpdateClusterConfigurationResponse -> ShowS
Prelude.Show, (forall x.
UpdateClusterConfigurationResponse
-> Rep UpdateClusterConfigurationResponse x)
-> (forall x.
Rep UpdateClusterConfigurationResponse x
-> UpdateClusterConfigurationResponse)
-> Generic UpdateClusterConfigurationResponse
forall x.
Rep UpdateClusterConfigurationResponse x
-> UpdateClusterConfigurationResponse
forall x.
UpdateClusterConfigurationResponse
-> Rep UpdateClusterConfigurationResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateClusterConfigurationResponse x
-> UpdateClusterConfigurationResponse
$cfrom :: forall x.
UpdateClusterConfigurationResponse
-> Rep UpdateClusterConfigurationResponse x
Prelude.Generic)
newUpdateClusterConfigurationResponse ::
Prelude.Int ->
UpdateClusterConfigurationResponse
newUpdateClusterConfigurationResponse :: Int -> UpdateClusterConfigurationResponse
newUpdateClusterConfigurationResponse Int
pHttpStatus_ =
UpdateClusterConfigurationResponse' :: Maybe Text
-> Maybe Text -> Int -> UpdateClusterConfigurationResponse
UpdateClusterConfigurationResponse'
{ $sel:clusterArn:UpdateClusterConfigurationResponse' :: Maybe Text
clusterArn =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:clusterOperationArn:UpdateClusterConfigurationResponse' :: Maybe Text
clusterOperationArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:UpdateClusterConfigurationResponse' :: Int
httpStatus = Int
pHttpStatus_
}
updateClusterConfigurationResponse_clusterArn :: Lens.Lens' UpdateClusterConfigurationResponse (Prelude.Maybe Prelude.Text)
updateClusterConfigurationResponse_clusterArn :: (Maybe Text -> f (Maybe Text))
-> UpdateClusterConfigurationResponse
-> f UpdateClusterConfigurationResponse
updateClusterConfigurationResponse_clusterArn = (UpdateClusterConfigurationResponse -> Maybe Text)
-> (UpdateClusterConfigurationResponse
-> Maybe Text -> UpdateClusterConfigurationResponse)
-> Lens
UpdateClusterConfigurationResponse
UpdateClusterConfigurationResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateClusterConfigurationResponse' {Maybe Text
clusterArn :: Maybe Text
$sel:clusterArn:UpdateClusterConfigurationResponse' :: UpdateClusterConfigurationResponse -> Maybe Text
clusterArn} -> Maybe Text
clusterArn) (\s :: UpdateClusterConfigurationResponse
s@UpdateClusterConfigurationResponse' {} Maybe Text
a -> UpdateClusterConfigurationResponse
s {$sel:clusterArn:UpdateClusterConfigurationResponse' :: Maybe Text
clusterArn = Maybe Text
a} :: UpdateClusterConfigurationResponse)
updateClusterConfigurationResponse_clusterOperationArn :: Lens.Lens' UpdateClusterConfigurationResponse (Prelude.Maybe Prelude.Text)
updateClusterConfigurationResponse_clusterOperationArn :: (Maybe Text -> f (Maybe Text))
-> UpdateClusterConfigurationResponse
-> f UpdateClusterConfigurationResponse
updateClusterConfigurationResponse_clusterOperationArn = (UpdateClusterConfigurationResponse -> Maybe Text)
-> (UpdateClusterConfigurationResponse
-> Maybe Text -> UpdateClusterConfigurationResponse)
-> Lens
UpdateClusterConfigurationResponse
UpdateClusterConfigurationResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateClusterConfigurationResponse' {Maybe Text
clusterOperationArn :: Maybe Text
$sel:clusterOperationArn:UpdateClusterConfigurationResponse' :: UpdateClusterConfigurationResponse -> Maybe Text
clusterOperationArn} -> Maybe Text
clusterOperationArn) (\s :: UpdateClusterConfigurationResponse
s@UpdateClusterConfigurationResponse' {} Maybe Text
a -> UpdateClusterConfigurationResponse
s {$sel:clusterOperationArn:UpdateClusterConfigurationResponse' :: Maybe Text
clusterOperationArn = Maybe Text
a} :: UpdateClusterConfigurationResponse)
updateClusterConfigurationResponse_httpStatus :: Lens.Lens' UpdateClusterConfigurationResponse Prelude.Int
updateClusterConfigurationResponse_httpStatus :: (Int -> f Int)
-> UpdateClusterConfigurationResponse
-> f UpdateClusterConfigurationResponse
updateClusterConfigurationResponse_httpStatus = (UpdateClusterConfigurationResponse -> Int)
-> (UpdateClusterConfigurationResponse
-> Int -> UpdateClusterConfigurationResponse)
-> Lens
UpdateClusterConfigurationResponse
UpdateClusterConfigurationResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateClusterConfigurationResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateClusterConfigurationResponse' :: UpdateClusterConfigurationResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateClusterConfigurationResponse
s@UpdateClusterConfigurationResponse' {} Int
a -> UpdateClusterConfigurationResponse
s {$sel:httpStatus:UpdateClusterConfigurationResponse' :: Int
httpStatus = Int
a} :: UpdateClusterConfigurationResponse)
instance
Prelude.NFData
UpdateClusterConfigurationResponse