{-# 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.MediaConnect.UpdateFlowEntitlement
(
UpdateFlowEntitlement (..),
newUpdateFlowEntitlement,
updateFlowEntitlement_encryption,
updateFlowEntitlement_entitlementStatus,
updateFlowEntitlement_description,
updateFlowEntitlement_subscribers,
updateFlowEntitlement_flowArn,
updateFlowEntitlement_entitlementArn,
UpdateFlowEntitlementResponse (..),
newUpdateFlowEntitlementResponse,
updateFlowEntitlementResponse_flowArn,
updateFlowEntitlementResponse_entitlement,
updateFlowEntitlementResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.MediaConnect.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data UpdateFlowEntitlement = UpdateFlowEntitlement'
{
UpdateFlowEntitlement -> Maybe UpdateEncryption
encryption :: Prelude.Maybe UpdateEncryption,
UpdateFlowEntitlement -> Maybe EntitlementStatus
entitlementStatus :: Prelude.Maybe EntitlementStatus,
UpdateFlowEntitlement -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
UpdateFlowEntitlement -> Maybe [Text]
subscribers :: Prelude.Maybe [Prelude.Text],
UpdateFlowEntitlement -> Text
flowArn :: Prelude.Text,
UpdateFlowEntitlement -> Text
entitlementArn :: Prelude.Text
}
deriving (UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool
(UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool)
-> (UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool)
-> Eq UpdateFlowEntitlement
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool
$c/= :: UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool
== :: UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool
$c== :: UpdateFlowEntitlement -> UpdateFlowEntitlement -> Bool
Prelude.Eq, ReadPrec [UpdateFlowEntitlement]
ReadPrec UpdateFlowEntitlement
Int -> ReadS UpdateFlowEntitlement
ReadS [UpdateFlowEntitlement]
(Int -> ReadS UpdateFlowEntitlement)
-> ReadS [UpdateFlowEntitlement]
-> ReadPrec UpdateFlowEntitlement
-> ReadPrec [UpdateFlowEntitlement]
-> Read UpdateFlowEntitlement
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateFlowEntitlement]
$creadListPrec :: ReadPrec [UpdateFlowEntitlement]
readPrec :: ReadPrec UpdateFlowEntitlement
$creadPrec :: ReadPrec UpdateFlowEntitlement
readList :: ReadS [UpdateFlowEntitlement]
$creadList :: ReadS [UpdateFlowEntitlement]
readsPrec :: Int -> ReadS UpdateFlowEntitlement
$creadsPrec :: Int -> ReadS UpdateFlowEntitlement
Prelude.Read, Int -> UpdateFlowEntitlement -> ShowS
[UpdateFlowEntitlement] -> ShowS
UpdateFlowEntitlement -> String
(Int -> UpdateFlowEntitlement -> ShowS)
-> (UpdateFlowEntitlement -> String)
-> ([UpdateFlowEntitlement] -> ShowS)
-> Show UpdateFlowEntitlement
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateFlowEntitlement] -> ShowS
$cshowList :: [UpdateFlowEntitlement] -> ShowS
show :: UpdateFlowEntitlement -> String
$cshow :: UpdateFlowEntitlement -> String
showsPrec :: Int -> UpdateFlowEntitlement -> ShowS
$cshowsPrec :: Int -> UpdateFlowEntitlement -> ShowS
Prelude.Show, (forall x. UpdateFlowEntitlement -> Rep UpdateFlowEntitlement x)
-> (forall x. Rep UpdateFlowEntitlement x -> UpdateFlowEntitlement)
-> Generic UpdateFlowEntitlement
forall x. Rep UpdateFlowEntitlement x -> UpdateFlowEntitlement
forall x. UpdateFlowEntitlement -> Rep UpdateFlowEntitlement x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateFlowEntitlement x -> UpdateFlowEntitlement
$cfrom :: forall x. UpdateFlowEntitlement -> Rep UpdateFlowEntitlement x
Prelude.Generic)
newUpdateFlowEntitlement ::
Prelude.Text ->
Prelude.Text ->
UpdateFlowEntitlement
newUpdateFlowEntitlement :: Text -> Text -> UpdateFlowEntitlement
newUpdateFlowEntitlement Text
pFlowArn_ Text
pEntitlementArn_ =
UpdateFlowEntitlement' :: Maybe UpdateEncryption
-> Maybe EntitlementStatus
-> Maybe Text
-> Maybe [Text]
-> Text
-> Text
-> UpdateFlowEntitlement
UpdateFlowEntitlement'
{ $sel:encryption:UpdateFlowEntitlement' :: Maybe UpdateEncryption
encryption =
Maybe UpdateEncryption
forall a. Maybe a
Prelude.Nothing,
$sel:entitlementStatus:UpdateFlowEntitlement' :: Maybe EntitlementStatus
entitlementStatus = Maybe EntitlementStatus
forall a. Maybe a
Prelude.Nothing,
$sel:description:UpdateFlowEntitlement' :: Maybe Text
description = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:subscribers:UpdateFlowEntitlement' :: Maybe [Text]
subscribers = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
$sel:flowArn:UpdateFlowEntitlement' :: Text
flowArn = Text
pFlowArn_,
$sel:entitlementArn:UpdateFlowEntitlement' :: Text
entitlementArn = Text
pEntitlementArn_
}
updateFlowEntitlement_encryption :: Lens.Lens' UpdateFlowEntitlement (Prelude.Maybe UpdateEncryption)
updateFlowEntitlement_encryption :: (Maybe UpdateEncryption -> f (Maybe UpdateEncryption))
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement
updateFlowEntitlement_encryption = (UpdateFlowEntitlement -> Maybe UpdateEncryption)
-> (UpdateFlowEntitlement
-> Maybe UpdateEncryption -> UpdateFlowEntitlement)
-> Lens
UpdateFlowEntitlement
UpdateFlowEntitlement
(Maybe UpdateEncryption)
(Maybe UpdateEncryption)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlement' {Maybe UpdateEncryption
encryption :: Maybe UpdateEncryption
$sel:encryption:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe UpdateEncryption
encryption} -> Maybe UpdateEncryption
encryption) (\s :: UpdateFlowEntitlement
s@UpdateFlowEntitlement' {} Maybe UpdateEncryption
a -> UpdateFlowEntitlement
s {$sel:encryption:UpdateFlowEntitlement' :: Maybe UpdateEncryption
encryption = Maybe UpdateEncryption
a} :: UpdateFlowEntitlement)
updateFlowEntitlement_entitlementStatus :: Lens.Lens' UpdateFlowEntitlement (Prelude.Maybe EntitlementStatus)
updateFlowEntitlement_entitlementStatus :: (Maybe EntitlementStatus -> f (Maybe EntitlementStatus))
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement
updateFlowEntitlement_entitlementStatus = (UpdateFlowEntitlement -> Maybe EntitlementStatus)
-> (UpdateFlowEntitlement
-> Maybe EntitlementStatus -> UpdateFlowEntitlement)
-> Lens
UpdateFlowEntitlement
UpdateFlowEntitlement
(Maybe EntitlementStatus)
(Maybe EntitlementStatus)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlement' {Maybe EntitlementStatus
entitlementStatus :: Maybe EntitlementStatus
$sel:entitlementStatus:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe EntitlementStatus
entitlementStatus} -> Maybe EntitlementStatus
entitlementStatus) (\s :: UpdateFlowEntitlement
s@UpdateFlowEntitlement' {} Maybe EntitlementStatus
a -> UpdateFlowEntitlement
s {$sel:entitlementStatus:UpdateFlowEntitlement' :: Maybe EntitlementStatus
entitlementStatus = Maybe EntitlementStatus
a} :: UpdateFlowEntitlement)
updateFlowEntitlement_description :: Lens.Lens' UpdateFlowEntitlement (Prelude.Maybe Prelude.Text)
updateFlowEntitlement_description :: (Maybe Text -> f (Maybe Text))
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement
updateFlowEntitlement_description = (UpdateFlowEntitlement -> Maybe Text)
-> (UpdateFlowEntitlement -> Maybe Text -> UpdateFlowEntitlement)
-> Lens
UpdateFlowEntitlement
UpdateFlowEntitlement
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlement' {Maybe Text
description :: Maybe Text
$sel:description:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe Text
description} -> Maybe Text
description) (\s :: UpdateFlowEntitlement
s@UpdateFlowEntitlement' {} Maybe Text
a -> UpdateFlowEntitlement
s {$sel:description:UpdateFlowEntitlement' :: Maybe Text
description = Maybe Text
a} :: UpdateFlowEntitlement)
updateFlowEntitlement_subscribers :: Lens.Lens' UpdateFlowEntitlement (Prelude.Maybe [Prelude.Text])
updateFlowEntitlement_subscribers :: (Maybe [Text] -> f (Maybe [Text]))
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement
updateFlowEntitlement_subscribers = (UpdateFlowEntitlement -> Maybe [Text])
-> (UpdateFlowEntitlement -> Maybe [Text] -> UpdateFlowEntitlement)
-> Lens
UpdateFlowEntitlement
UpdateFlowEntitlement
(Maybe [Text])
(Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlement' {Maybe [Text]
subscribers :: Maybe [Text]
$sel:subscribers:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe [Text]
subscribers} -> Maybe [Text]
subscribers) (\s :: UpdateFlowEntitlement
s@UpdateFlowEntitlement' {} Maybe [Text]
a -> UpdateFlowEntitlement
s {$sel:subscribers:UpdateFlowEntitlement' :: Maybe [Text]
subscribers = Maybe [Text]
a} :: UpdateFlowEntitlement) ((Maybe [Text] -> f (Maybe [Text]))
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement)
-> ((Maybe [Text] -> f (Maybe [Text]))
-> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> UpdateFlowEntitlement
-> f UpdateFlowEntitlement
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Text] [Text] [Text] [Text]
-> Iso (Maybe [Text]) (Maybe [Text]) (Maybe [Text]) (Maybe [Text])
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 [Text] [Text] [Text] [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
updateFlowEntitlement_flowArn :: Lens.Lens' UpdateFlowEntitlement Prelude.Text
updateFlowEntitlement_flowArn :: (Text -> f Text)
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement
updateFlowEntitlement_flowArn = (UpdateFlowEntitlement -> Text)
-> (UpdateFlowEntitlement -> Text -> UpdateFlowEntitlement)
-> Lens UpdateFlowEntitlement UpdateFlowEntitlement Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlement' {Text
flowArn :: Text
$sel:flowArn:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Text
flowArn} -> Text
flowArn) (\s :: UpdateFlowEntitlement
s@UpdateFlowEntitlement' {} Text
a -> UpdateFlowEntitlement
s {$sel:flowArn:UpdateFlowEntitlement' :: Text
flowArn = Text
a} :: UpdateFlowEntitlement)
updateFlowEntitlement_entitlementArn :: Lens.Lens' UpdateFlowEntitlement Prelude.Text
updateFlowEntitlement_entitlementArn :: (Text -> f Text)
-> UpdateFlowEntitlement -> f UpdateFlowEntitlement
updateFlowEntitlement_entitlementArn = (UpdateFlowEntitlement -> Text)
-> (UpdateFlowEntitlement -> Text -> UpdateFlowEntitlement)
-> Lens UpdateFlowEntitlement UpdateFlowEntitlement Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlement' {Text
entitlementArn :: Text
$sel:entitlementArn:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Text
entitlementArn} -> Text
entitlementArn) (\s :: UpdateFlowEntitlement
s@UpdateFlowEntitlement' {} Text
a -> UpdateFlowEntitlement
s {$sel:entitlementArn:UpdateFlowEntitlement' :: Text
entitlementArn = Text
a} :: UpdateFlowEntitlement)
instance Core.AWSRequest UpdateFlowEntitlement where
type
AWSResponse UpdateFlowEntitlement =
UpdateFlowEntitlementResponse
request :: UpdateFlowEntitlement -> Request UpdateFlowEntitlement
request = Service -> UpdateFlowEntitlement -> Request UpdateFlowEntitlement
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.putJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateFlowEntitlement
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateFlowEntitlement)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse UpdateFlowEntitlement))
-> Logger
-> Service
-> Proxy UpdateFlowEntitlement
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateFlowEntitlement)))
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 Entitlement -> Int -> UpdateFlowEntitlementResponse
UpdateFlowEntitlementResponse'
(Maybe Text
-> Maybe Entitlement -> Int -> UpdateFlowEntitlementResponse)
-> Either String (Maybe Text)
-> Either
String (Maybe Entitlement -> Int -> UpdateFlowEntitlementResponse)
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
"flowArn")
Either
String (Maybe Entitlement -> Int -> UpdateFlowEntitlementResponse)
-> Either String (Maybe Entitlement)
-> Either String (Int -> UpdateFlowEntitlementResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe Entitlement)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"entitlement")
Either String (Int -> UpdateFlowEntitlementResponse)
-> Either String Int -> Either String UpdateFlowEntitlementResponse
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 UpdateFlowEntitlement
instance Prelude.NFData UpdateFlowEntitlement
instance Core.ToHeaders UpdateFlowEntitlement where
toHeaders :: UpdateFlowEntitlement -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateFlowEntitlement -> 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 UpdateFlowEntitlement where
toJSON :: UpdateFlowEntitlement -> Value
toJSON UpdateFlowEntitlement' {Maybe [Text]
Maybe Text
Maybe EntitlementStatus
Maybe UpdateEncryption
Text
entitlementArn :: Text
flowArn :: Text
subscribers :: Maybe [Text]
description :: Maybe Text
entitlementStatus :: Maybe EntitlementStatus
encryption :: Maybe UpdateEncryption
$sel:entitlementArn:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Text
$sel:flowArn:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Text
$sel:subscribers:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe [Text]
$sel:description:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe Text
$sel:entitlementStatus:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe EntitlementStatus
$sel:encryption:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe UpdateEncryption
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"encryption" Text -> UpdateEncryption -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (UpdateEncryption -> Pair) -> Maybe UpdateEncryption -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe UpdateEncryption
encryption,
(Text
"entitlementStatus" Text -> EntitlementStatus -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(EntitlementStatus -> Pair)
-> Maybe EntitlementStatus -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EntitlementStatus
entitlementStatus,
(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,
(Text
"subscribers" 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]
subscribers
]
)
instance Core.ToPath UpdateFlowEntitlement where
toPath :: UpdateFlowEntitlement -> ByteString
toPath UpdateFlowEntitlement' {Maybe [Text]
Maybe Text
Maybe EntitlementStatus
Maybe UpdateEncryption
Text
entitlementArn :: Text
flowArn :: Text
subscribers :: Maybe [Text]
description :: Maybe Text
entitlementStatus :: Maybe EntitlementStatus
encryption :: Maybe UpdateEncryption
$sel:entitlementArn:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Text
$sel:flowArn:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Text
$sel:subscribers:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe [Text]
$sel:description:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe Text
$sel:entitlementStatus:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe EntitlementStatus
$sel:encryption:UpdateFlowEntitlement' :: UpdateFlowEntitlement -> Maybe UpdateEncryption
..} =
[ByteString] -> ByteString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"/v1/flows/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
flowArn,
ByteString
"/entitlements/",
Text -> ByteString
forall a. ToByteString a => a -> ByteString
Core.toBS Text
entitlementArn
]
instance Core.ToQuery UpdateFlowEntitlement where
toQuery :: UpdateFlowEntitlement -> QueryString
toQuery = QueryString -> UpdateFlowEntitlement -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateFlowEntitlementResponse = UpdateFlowEntitlementResponse'
{
UpdateFlowEntitlementResponse -> Maybe Text
flowArn :: Prelude.Maybe Prelude.Text,
UpdateFlowEntitlementResponse -> Maybe Entitlement
entitlement :: Prelude.Maybe Entitlement,
UpdateFlowEntitlementResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool
(UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool)
-> (UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool)
-> Eq UpdateFlowEntitlementResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool
$c/= :: UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool
== :: UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool
$c== :: UpdateFlowEntitlementResponse
-> UpdateFlowEntitlementResponse -> Bool
Prelude.Eq, ReadPrec [UpdateFlowEntitlementResponse]
ReadPrec UpdateFlowEntitlementResponse
Int -> ReadS UpdateFlowEntitlementResponse
ReadS [UpdateFlowEntitlementResponse]
(Int -> ReadS UpdateFlowEntitlementResponse)
-> ReadS [UpdateFlowEntitlementResponse]
-> ReadPrec UpdateFlowEntitlementResponse
-> ReadPrec [UpdateFlowEntitlementResponse]
-> Read UpdateFlowEntitlementResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateFlowEntitlementResponse]
$creadListPrec :: ReadPrec [UpdateFlowEntitlementResponse]
readPrec :: ReadPrec UpdateFlowEntitlementResponse
$creadPrec :: ReadPrec UpdateFlowEntitlementResponse
readList :: ReadS [UpdateFlowEntitlementResponse]
$creadList :: ReadS [UpdateFlowEntitlementResponse]
readsPrec :: Int -> ReadS UpdateFlowEntitlementResponse
$creadsPrec :: Int -> ReadS UpdateFlowEntitlementResponse
Prelude.Read, Int -> UpdateFlowEntitlementResponse -> ShowS
[UpdateFlowEntitlementResponse] -> ShowS
UpdateFlowEntitlementResponse -> String
(Int -> UpdateFlowEntitlementResponse -> ShowS)
-> (UpdateFlowEntitlementResponse -> String)
-> ([UpdateFlowEntitlementResponse] -> ShowS)
-> Show UpdateFlowEntitlementResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateFlowEntitlementResponse] -> ShowS
$cshowList :: [UpdateFlowEntitlementResponse] -> ShowS
show :: UpdateFlowEntitlementResponse -> String
$cshow :: UpdateFlowEntitlementResponse -> String
showsPrec :: Int -> UpdateFlowEntitlementResponse -> ShowS
$cshowsPrec :: Int -> UpdateFlowEntitlementResponse -> ShowS
Prelude.Show, (forall x.
UpdateFlowEntitlementResponse
-> Rep UpdateFlowEntitlementResponse x)
-> (forall x.
Rep UpdateFlowEntitlementResponse x
-> UpdateFlowEntitlementResponse)
-> Generic UpdateFlowEntitlementResponse
forall x.
Rep UpdateFlowEntitlementResponse x
-> UpdateFlowEntitlementResponse
forall x.
UpdateFlowEntitlementResponse
-> Rep UpdateFlowEntitlementResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateFlowEntitlementResponse x
-> UpdateFlowEntitlementResponse
$cfrom :: forall x.
UpdateFlowEntitlementResponse
-> Rep UpdateFlowEntitlementResponse x
Prelude.Generic)
newUpdateFlowEntitlementResponse ::
Prelude.Int ->
UpdateFlowEntitlementResponse
newUpdateFlowEntitlementResponse :: Int -> UpdateFlowEntitlementResponse
newUpdateFlowEntitlementResponse Int
pHttpStatus_ =
UpdateFlowEntitlementResponse' :: Maybe Text
-> Maybe Entitlement -> Int -> UpdateFlowEntitlementResponse
UpdateFlowEntitlementResponse'
{ $sel:flowArn:UpdateFlowEntitlementResponse' :: Maybe Text
flowArn =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:entitlement:UpdateFlowEntitlementResponse' :: Maybe Entitlement
entitlement = Maybe Entitlement
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:UpdateFlowEntitlementResponse' :: Int
httpStatus = Int
pHttpStatus_
}
updateFlowEntitlementResponse_flowArn :: Lens.Lens' UpdateFlowEntitlementResponse (Prelude.Maybe Prelude.Text)
updateFlowEntitlementResponse_flowArn :: (Maybe Text -> f (Maybe Text))
-> UpdateFlowEntitlementResponse -> f UpdateFlowEntitlementResponse
updateFlowEntitlementResponse_flowArn = (UpdateFlowEntitlementResponse -> Maybe Text)
-> (UpdateFlowEntitlementResponse
-> Maybe Text -> UpdateFlowEntitlementResponse)
-> Lens
UpdateFlowEntitlementResponse
UpdateFlowEntitlementResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlementResponse' {Maybe Text
flowArn :: Maybe Text
$sel:flowArn:UpdateFlowEntitlementResponse' :: UpdateFlowEntitlementResponse -> Maybe Text
flowArn} -> Maybe Text
flowArn) (\s :: UpdateFlowEntitlementResponse
s@UpdateFlowEntitlementResponse' {} Maybe Text
a -> UpdateFlowEntitlementResponse
s {$sel:flowArn:UpdateFlowEntitlementResponse' :: Maybe Text
flowArn = Maybe Text
a} :: UpdateFlowEntitlementResponse)
updateFlowEntitlementResponse_entitlement :: Lens.Lens' UpdateFlowEntitlementResponse (Prelude.Maybe Entitlement)
updateFlowEntitlementResponse_entitlement :: (Maybe Entitlement -> f (Maybe Entitlement))
-> UpdateFlowEntitlementResponse -> f UpdateFlowEntitlementResponse
updateFlowEntitlementResponse_entitlement = (UpdateFlowEntitlementResponse -> Maybe Entitlement)
-> (UpdateFlowEntitlementResponse
-> Maybe Entitlement -> UpdateFlowEntitlementResponse)
-> Lens
UpdateFlowEntitlementResponse
UpdateFlowEntitlementResponse
(Maybe Entitlement)
(Maybe Entitlement)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlementResponse' {Maybe Entitlement
entitlement :: Maybe Entitlement
$sel:entitlement:UpdateFlowEntitlementResponse' :: UpdateFlowEntitlementResponse -> Maybe Entitlement
entitlement} -> Maybe Entitlement
entitlement) (\s :: UpdateFlowEntitlementResponse
s@UpdateFlowEntitlementResponse' {} Maybe Entitlement
a -> UpdateFlowEntitlementResponse
s {$sel:entitlement:UpdateFlowEntitlementResponse' :: Maybe Entitlement
entitlement = Maybe Entitlement
a} :: UpdateFlowEntitlementResponse)
updateFlowEntitlementResponse_httpStatus :: Lens.Lens' UpdateFlowEntitlementResponse Prelude.Int
updateFlowEntitlementResponse_httpStatus :: (Int -> f Int)
-> UpdateFlowEntitlementResponse -> f UpdateFlowEntitlementResponse
updateFlowEntitlementResponse_httpStatus = (UpdateFlowEntitlementResponse -> Int)
-> (UpdateFlowEntitlementResponse
-> Int -> UpdateFlowEntitlementResponse)
-> Lens
UpdateFlowEntitlementResponse UpdateFlowEntitlementResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateFlowEntitlementResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateFlowEntitlementResponse' :: UpdateFlowEntitlementResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateFlowEntitlementResponse
s@UpdateFlowEntitlementResponse' {} Int
a -> UpdateFlowEntitlementResponse
s {$sel:httpStatus:UpdateFlowEntitlementResponse' :: Int
httpStatus = Int
a} :: UpdateFlowEntitlementResponse)
instance Prelude.NFData UpdateFlowEntitlementResponse