{-# 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.ServiceCatalog.CreateServiceAction
(
CreateServiceAction (..),
newCreateServiceAction,
createServiceAction_acceptLanguage,
createServiceAction_description,
createServiceAction_name,
createServiceAction_definitionType,
createServiceAction_definition,
createServiceAction_idempotencyToken,
CreateServiceActionResponse (..),
newCreateServiceActionResponse,
createServiceActionResponse_serviceActionDetail,
createServiceActionResponse_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.ServiceCatalog.Types
data CreateServiceAction = CreateServiceAction'
{
CreateServiceAction -> Maybe Text
acceptLanguage :: Prelude.Maybe Prelude.Text,
CreateServiceAction -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
CreateServiceAction -> Text
name :: Prelude.Text,
CreateServiceAction -> ServiceActionDefinitionType
definitionType :: ServiceActionDefinitionType,
CreateServiceAction -> HashMap ServiceActionDefinitionKey Text
definition :: Prelude.HashMap ServiceActionDefinitionKey Prelude.Text,
CreateServiceAction -> Text
idempotencyToken :: Prelude.Text
}
deriving (CreateServiceAction -> CreateServiceAction -> Bool
(CreateServiceAction -> CreateServiceAction -> Bool)
-> (CreateServiceAction -> CreateServiceAction -> Bool)
-> Eq CreateServiceAction
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateServiceAction -> CreateServiceAction -> Bool
$c/= :: CreateServiceAction -> CreateServiceAction -> Bool
== :: CreateServiceAction -> CreateServiceAction -> Bool
$c== :: CreateServiceAction -> CreateServiceAction -> Bool
Prelude.Eq, ReadPrec [CreateServiceAction]
ReadPrec CreateServiceAction
Int -> ReadS CreateServiceAction
ReadS [CreateServiceAction]
(Int -> ReadS CreateServiceAction)
-> ReadS [CreateServiceAction]
-> ReadPrec CreateServiceAction
-> ReadPrec [CreateServiceAction]
-> Read CreateServiceAction
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateServiceAction]
$creadListPrec :: ReadPrec [CreateServiceAction]
readPrec :: ReadPrec CreateServiceAction
$creadPrec :: ReadPrec CreateServiceAction
readList :: ReadS [CreateServiceAction]
$creadList :: ReadS [CreateServiceAction]
readsPrec :: Int -> ReadS CreateServiceAction
$creadsPrec :: Int -> ReadS CreateServiceAction
Prelude.Read, Int -> CreateServiceAction -> ShowS
[CreateServiceAction] -> ShowS
CreateServiceAction -> String
(Int -> CreateServiceAction -> ShowS)
-> (CreateServiceAction -> String)
-> ([CreateServiceAction] -> ShowS)
-> Show CreateServiceAction
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateServiceAction] -> ShowS
$cshowList :: [CreateServiceAction] -> ShowS
show :: CreateServiceAction -> String
$cshow :: CreateServiceAction -> String
showsPrec :: Int -> CreateServiceAction -> ShowS
$cshowsPrec :: Int -> CreateServiceAction -> ShowS
Prelude.Show, (forall x. CreateServiceAction -> Rep CreateServiceAction x)
-> (forall x. Rep CreateServiceAction x -> CreateServiceAction)
-> Generic CreateServiceAction
forall x. Rep CreateServiceAction x -> CreateServiceAction
forall x. CreateServiceAction -> Rep CreateServiceAction x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateServiceAction x -> CreateServiceAction
$cfrom :: forall x. CreateServiceAction -> Rep CreateServiceAction x
Prelude.Generic)
newCreateServiceAction ::
Prelude.Text ->
ServiceActionDefinitionType ->
Prelude.Text ->
CreateServiceAction
newCreateServiceAction :: Text -> ServiceActionDefinitionType -> Text -> CreateServiceAction
newCreateServiceAction
Text
pName_
ServiceActionDefinitionType
pDefinitionType_
Text
pIdempotencyToken_ =
CreateServiceAction' :: Maybe Text
-> Maybe Text
-> Text
-> ServiceActionDefinitionType
-> HashMap ServiceActionDefinitionKey Text
-> Text
-> CreateServiceAction
CreateServiceAction'
{ $sel:acceptLanguage:CreateServiceAction' :: Maybe Text
acceptLanguage =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:description:CreateServiceAction' :: Maybe Text
description = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:name:CreateServiceAction' :: Text
name = Text
pName_,
$sel:definitionType:CreateServiceAction' :: ServiceActionDefinitionType
definitionType = ServiceActionDefinitionType
pDefinitionType_,
$sel:definition:CreateServiceAction' :: HashMap ServiceActionDefinitionKey Text
definition = HashMap ServiceActionDefinitionKey Text
forall a. Monoid a => a
Prelude.mempty,
$sel:idempotencyToken:CreateServiceAction' :: Text
idempotencyToken = Text
pIdempotencyToken_
}
createServiceAction_acceptLanguage :: Lens.Lens' CreateServiceAction (Prelude.Maybe Prelude.Text)
createServiceAction_acceptLanguage :: (Maybe Text -> f (Maybe Text))
-> CreateServiceAction -> f CreateServiceAction
createServiceAction_acceptLanguage = (CreateServiceAction -> Maybe Text)
-> (CreateServiceAction -> Maybe Text -> CreateServiceAction)
-> Lens
CreateServiceAction CreateServiceAction (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceAction' {Maybe Text
acceptLanguage :: Maybe Text
$sel:acceptLanguage:CreateServiceAction' :: CreateServiceAction -> Maybe Text
acceptLanguage} -> Maybe Text
acceptLanguage) (\s :: CreateServiceAction
s@CreateServiceAction' {} Maybe Text
a -> CreateServiceAction
s {$sel:acceptLanguage:CreateServiceAction' :: Maybe Text
acceptLanguage = Maybe Text
a} :: CreateServiceAction)
createServiceAction_description :: Lens.Lens' CreateServiceAction (Prelude.Maybe Prelude.Text)
createServiceAction_description :: (Maybe Text -> f (Maybe Text))
-> CreateServiceAction -> f CreateServiceAction
createServiceAction_description = (CreateServiceAction -> Maybe Text)
-> (CreateServiceAction -> Maybe Text -> CreateServiceAction)
-> Lens
CreateServiceAction CreateServiceAction (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceAction' {Maybe Text
description :: Maybe Text
$sel:description:CreateServiceAction' :: CreateServiceAction -> Maybe Text
description} -> Maybe Text
description) (\s :: CreateServiceAction
s@CreateServiceAction' {} Maybe Text
a -> CreateServiceAction
s {$sel:description:CreateServiceAction' :: Maybe Text
description = Maybe Text
a} :: CreateServiceAction)
createServiceAction_name :: Lens.Lens' CreateServiceAction Prelude.Text
createServiceAction_name :: (Text -> f Text) -> CreateServiceAction -> f CreateServiceAction
createServiceAction_name = (CreateServiceAction -> Text)
-> (CreateServiceAction -> Text -> CreateServiceAction)
-> Lens CreateServiceAction CreateServiceAction Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceAction' {Text
name :: Text
$sel:name:CreateServiceAction' :: CreateServiceAction -> Text
name} -> Text
name) (\s :: CreateServiceAction
s@CreateServiceAction' {} Text
a -> CreateServiceAction
s {$sel:name:CreateServiceAction' :: Text
name = Text
a} :: CreateServiceAction)
createServiceAction_definitionType :: Lens.Lens' CreateServiceAction ServiceActionDefinitionType
createServiceAction_definitionType :: (ServiceActionDefinitionType -> f ServiceActionDefinitionType)
-> CreateServiceAction -> f CreateServiceAction
createServiceAction_definitionType = (CreateServiceAction -> ServiceActionDefinitionType)
-> (CreateServiceAction
-> ServiceActionDefinitionType -> CreateServiceAction)
-> Lens
CreateServiceAction
CreateServiceAction
ServiceActionDefinitionType
ServiceActionDefinitionType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceAction' {ServiceActionDefinitionType
definitionType :: ServiceActionDefinitionType
$sel:definitionType:CreateServiceAction' :: CreateServiceAction -> ServiceActionDefinitionType
definitionType} -> ServiceActionDefinitionType
definitionType) (\s :: CreateServiceAction
s@CreateServiceAction' {} ServiceActionDefinitionType
a -> CreateServiceAction
s {$sel:definitionType:CreateServiceAction' :: ServiceActionDefinitionType
definitionType = ServiceActionDefinitionType
a} :: CreateServiceAction)
createServiceAction_definition :: Lens.Lens' CreateServiceAction (Prelude.HashMap ServiceActionDefinitionKey Prelude.Text)
createServiceAction_definition :: (HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text))
-> CreateServiceAction -> f CreateServiceAction
createServiceAction_definition = (CreateServiceAction -> HashMap ServiceActionDefinitionKey Text)
-> (CreateServiceAction
-> HashMap ServiceActionDefinitionKey Text -> CreateServiceAction)
-> Lens
CreateServiceAction
CreateServiceAction
(HashMap ServiceActionDefinitionKey Text)
(HashMap ServiceActionDefinitionKey Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceAction' {HashMap ServiceActionDefinitionKey Text
definition :: HashMap ServiceActionDefinitionKey Text
$sel:definition:CreateServiceAction' :: CreateServiceAction -> HashMap ServiceActionDefinitionKey Text
definition} -> HashMap ServiceActionDefinitionKey Text
definition) (\s :: CreateServiceAction
s@CreateServiceAction' {} HashMap ServiceActionDefinitionKey Text
a -> CreateServiceAction
s {$sel:definition:CreateServiceAction' :: HashMap ServiceActionDefinitionKey Text
definition = HashMap ServiceActionDefinitionKey Text
a} :: CreateServiceAction) ((HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text))
-> CreateServiceAction -> f CreateServiceAction)
-> ((HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text))
-> HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text))
-> (HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text))
-> CreateServiceAction
-> f CreateServiceAction
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text))
-> HashMap ServiceActionDefinitionKey Text
-> f (HashMap ServiceActionDefinitionKey Text)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
createServiceAction_idempotencyToken :: Lens.Lens' CreateServiceAction Prelude.Text
createServiceAction_idempotencyToken :: (Text -> f Text) -> CreateServiceAction -> f CreateServiceAction
createServiceAction_idempotencyToken = (CreateServiceAction -> Text)
-> (CreateServiceAction -> Text -> CreateServiceAction)
-> Lens CreateServiceAction CreateServiceAction Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceAction' {Text
idempotencyToken :: Text
$sel:idempotencyToken:CreateServiceAction' :: CreateServiceAction -> Text
idempotencyToken} -> Text
idempotencyToken) (\s :: CreateServiceAction
s@CreateServiceAction' {} Text
a -> CreateServiceAction
s {$sel:idempotencyToken:CreateServiceAction' :: Text
idempotencyToken = Text
a} :: CreateServiceAction)
instance Core.AWSRequest CreateServiceAction where
type
AWSResponse CreateServiceAction =
CreateServiceActionResponse
request :: CreateServiceAction -> Request CreateServiceAction
request = Service -> CreateServiceAction -> Request CreateServiceAction
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy CreateServiceAction
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse CreateServiceAction)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse CreateServiceAction))
-> Logger
-> Service
-> Proxy CreateServiceAction
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse CreateServiceAction)))
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 ServiceActionDetail -> Int -> CreateServiceActionResponse
CreateServiceActionResponse'
(Maybe ServiceActionDetail -> Int -> CreateServiceActionResponse)
-> Either String (Maybe ServiceActionDetail)
-> Either String (Int -> CreateServiceActionResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe ServiceActionDetail)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"ServiceActionDetail")
Either String (Int -> CreateServiceActionResponse)
-> Either String Int -> Either String CreateServiceActionResponse
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 CreateServiceAction
instance Prelude.NFData CreateServiceAction
instance Core.ToHeaders CreateServiceAction where
toHeaders :: CreateServiceAction -> ResponseHeaders
toHeaders =
ResponseHeaders -> CreateServiceAction -> 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
"AWS242ServiceCatalogService.CreateServiceAction" ::
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 CreateServiceAction where
toJSON :: CreateServiceAction -> Value
toJSON CreateServiceAction' {Maybe Text
Text
HashMap ServiceActionDefinitionKey Text
ServiceActionDefinitionType
idempotencyToken :: Text
definition :: HashMap ServiceActionDefinitionKey Text
definitionType :: ServiceActionDefinitionType
name :: Text
description :: Maybe Text
acceptLanguage :: Maybe Text
$sel:idempotencyToken:CreateServiceAction' :: CreateServiceAction -> Text
$sel:definition:CreateServiceAction' :: CreateServiceAction -> HashMap ServiceActionDefinitionKey Text
$sel:definitionType:CreateServiceAction' :: CreateServiceAction -> ServiceActionDefinitionType
$sel:name:CreateServiceAction' :: CreateServiceAction -> Text
$sel:description:CreateServiceAction' :: CreateServiceAction -> Maybe Text
$sel:acceptLanguage:CreateServiceAction' :: CreateServiceAction -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"AcceptLanguage" 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
acceptLanguage,
(Text
"Description" 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
description,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Name" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
name),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"DefinitionType" Text -> ServiceActionDefinitionType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= ServiceActionDefinitionType
definitionType),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Definition" Text -> HashMap ServiceActionDefinitionKey Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= HashMap ServiceActionDefinitionKey Text
definition),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"IdempotencyToken" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
idempotencyToken)
]
)
instance Core.ToPath CreateServiceAction where
toPath :: CreateServiceAction -> ByteString
toPath = ByteString -> CreateServiceAction -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery CreateServiceAction where
toQuery :: CreateServiceAction -> QueryString
toQuery = QueryString -> CreateServiceAction -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data CreateServiceActionResponse = CreateServiceActionResponse'
{
CreateServiceActionResponse -> Maybe ServiceActionDetail
serviceActionDetail :: Prelude.Maybe ServiceActionDetail,
CreateServiceActionResponse -> Int
httpStatus :: Prelude.Int
}
deriving (CreateServiceActionResponse -> CreateServiceActionResponse -> Bool
(CreateServiceActionResponse
-> CreateServiceActionResponse -> Bool)
-> (CreateServiceActionResponse
-> CreateServiceActionResponse -> Bool)
-> Eq CreateServiceActionResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateServiceActionResponse -> CreateServiceActionResponse -> Bool
$c/= :: CreateServiceActionResponse -> CreateServiceActionResponse -> Bool
== :: CreateServiceActionResponse -> CreateServiceActionResponse -> Bool
$c== :: CreateServiceActionResponse -> CreateServiceActionResponse -> Bool
Prelude.Eq, ReadPrec [CreateServiceActionResponse]
ReadPrec CreateServiceActionResponse
Int -> ReadS CreateServiceActionResponse
ReadS [CreateServiceActionResponse]
(Int -> ReadS CreateServiceActionResponse)
-> ReadS [CreateServiceActionResponse]
-> ReadPrec CreateServiceActionResponse
-> ReadPrec [CreateServiceActionResponse]
-> Read CreateServiceActionResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateServiceActionResponse]
$creadListPrec :: ReadPrec [CreateServiceActionResponse]
readPrec :: ReadPrec CreateServiceActionResponse
$creadPrec :: ReadPrec CreateServiceActionResponse
readList :: ReadS [CreateServiceActionResponse]
$creadList :: ReadS [CreateServiceActionResponse]
readsPrec :: Int -> ReadS CreateServiceActionResponse
$creadsPrec :: Int -> ReadS CreateServiceActionResponse
Prelude.Read, Int -> CreateServiceActionResponse -> ShowS
[CreateServiceActionResponse] -> ShowS
CreateServiceActionResponse -> String
(Int -> CreateServiceActionResponse -> ShowS)
-> (CreateServiceActionResponse -> String)
-> ([CreateServiceActionResponse] -> ShowS)
-> Show CreateServiceActionResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateServiceActionResponse] -> ShowS
$cshowList :: [CreateServiceActionResponse] -> ShowS
show :: CreateServiceActionResponse -> String
$cshow :: CreateServiceActionResponse -> String
showsPrec :: Int -> CreateServiceActionResponse -> ShowS
$cshowsPrec :: Int -> CreateServiceActionResponse -> ShowS
Prelude.Show, (forall x.
CreateServiceActionResponse -> Rep CreateServiceActionResponse x)
-> (forall x.
Rep CreateServiceActionResponse x -> CreateServiceActionResponse)
-> Generic CreateServiceActionResponse
forall x.
Rep CreateServiceActionResponse x -> CreateServiceActionResponse
forall x.
CreateServiceActionResponse -> Rep CreateServiceActionResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep CreateServiceActionResponse x -> CreateServiceActionResponse
$cfrom :: forall x.
CreateServiceActionResponse -> Rep CreateServiceActionResponse x
Prelude.Generic)
newCreateServiceActionResponse ::
Prelude.Int ->
CreateServiceActionResponse
newCreateServiceActionResponse :: Int -> CreateServiceActionResponse
newCreateServiceActionResponse Int
pHttpStatus_ =
CreateServiceActionResponse' :: Maybe ServiceActionDetail -> Int -> CreateServiceActionResponse
CreateServiceActionResponse'
{ $sel:serviceActionDetail:CreateServiceActionResponse' :: Maybe ServiceActionDetail
serviceActionDetail =
Maybe ServiceActionDetail
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:CreateServiceActionResponse' :: Int
httpStatus = Int
pHttpStatus_
}
createServiceActionResponse_serviceActionDetail :: Lens.Lens' CreateServiceActionResponse (Prelude.Maybe ServiceActionDetail)
createServiceActionResponse_serviceActionDetail :: (Maybe ServiceActionDetail -> f (Maybe ServiceActionDetail))
-> CreateServiceActionResponse -> f CreateServiceActionResponse
createServiceActionResponse_serviceActionDetail = (CreateServiceActionResponse -> Maybe ServiceActionDetail)
-> (CreateServiceActionResponse
-> Maybe ServiceActionDetail -> CreateServiceActionResponse)
-> Lens
CreateServiceActionResponse
CreateServiceActionResponse
(Maybe ServiceActionDetail)
(Maybe ServiceActionDetail)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceActionResponse' {Maybe ServiceActionDetail
serviceActionDetail :: Maybe ServiceActionDetail
$sel:serviceActionDetail:CreateServiceActionResponse' :: CreateServiceActionResponse -> Maybe ServiceActionDetail
serviceActionDetail} -> Maybe ServiceActionDetail
serviceActionDetail) (\s :: CreateServiceActionResponse
s@CreateServiceActionResponse' {} Maybe ServiceActionDetail
a -> CreateServiceActionResponse
s {$sel:serviceActionDetail:CreateServiceActionResponse' :: Maybe ServiceActionDetail
serviceActionDetail = Maybe ServiceActionDetail
a} :: CreateServiceActionResponse)
createServiceActionResponse_httpStatus :: Lens.Lens' CreateServiceActionResponse Prelude.Int
createServiceActionResponse_httpStatus :: (Int -> f Int)
-> CreateServiceActionResponse -> f CreateServiceActionResponse
createServiceActionResponse_httpStatus = (CreateServiceActionResponse -> Int)
-> (CreateServiceActionResponse
-> Int -> CreateServiceActionResponse)
-> Lens
CreateServiceActionResponse CreateServiceActionResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateServiceActionResponse' {Int
httpStatus :: Int
$sel:httpStatus:CreateServiceActionResponse' :: CreateServiceActionResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: CreateServiceActionResponse
s@CreateServiceActionResponse' {} Int
a -> CreateServiceActionResponse
s {$sel:httpStatus:CreateServiceActionResponse' :: Int
httpStatus = Int
a} :: CreateServiceActionResponse)
instance Prelude.NFData CreateServiceActionResponse