{-# 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.Snowball.UpdateJobShipmentState
(
UpdateJobShipmentState (..),
newUpdateJobShipmentState,
updateJobShipmentState_jobId,
updateJobShipmentState_shipmentState,
UpdateJobShipmentStateResponse (..),
newUpdateJobShipmentStateResponse,
updateJobShipmentStateResponse_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.Snowball.Types
data UpdateJobShipmentState = UpdateJobShipmentState'
{
UpdateJobShipmentState -> Text
jobId :: Prelude.Text,
UpdateJobShipmentState -> ShipmentState
shipmentState :: ShipmentState
}
deriving (UpdateJobShipmentState -> UpdateJobShipmentState -> Bool
(UpdateJobShipmentState -> UpdateJobShipmentState -> Bool)
-> (UpdateJobShipmentState -> UpdateJobShipmentState -> Bool)
-> Eq UpdateJobShipmentState
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateJobShipmentState -> UpdateJobShipmentState -> Bool
$c/= :: UpdateJobShipmentState -> UpdateJobShipmentState -> Bool
== :: UpdateJobShipmentState -> UpdateJobShipmentState -> Bool
$c== :: UpdateJobShipmentState -> UpdateJobShipmentState -> Bool
Prelude.Eq, ReadPrec [UpdateJobShipmentState]
ReadPrec UpdateJobShipmentState
Int -> ReadS UpdateJobShipmentState
ReadS [UpdateJobShipmentState]
(Int -> ReadS UpdateJobShipmentState)
-> ReadS [UpdateJobShipmentState]
-> ReadPrec UpdateJobShipmentState
-> ReadPrec [UpdateJobShipmentState]
-> Read UpdateJobShipmentState
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateJobShipmentState]
$creadListPrec :: ReadPrec [UpdateJobShipmentState]
readPrec :: ReadPrec UpdateJobShipmentState
$creadPrec :: ReadPrec UpdateJobShipmentState
readList :: ReadS [UpdateJobShipmentState]
$creadList :: ReadS [UpdateJobShipmentState]
readsPrec :: Int -> ReadS UpdateJobShipmentState
$creadsPrec :: Int -> ReadS UpdateJobShipmentState
Prelude.Read, Int -> UpdateJobShipmentState -> ShowS
[UpdateJobShipmentState] -> ShowS
UpdateJobShipmentState -> String
(Int -> UpdateJobShipmentState -> ShowS)
-> (UpdateJobShipmentState -> String)
-> ([UpdateJobShipmentState] -> ShowS)
-> Show UpdateJobShipmentState
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateJobShipmentState] -> ShowS
$cshowList :: [UpdateJobShipmentState] -> ShowS
show :: UpdateJobShipmentState -> String
$cshow :: UpdateJobShipmentState -> String
showsPrec :: Int -> UpdateJobShipmentState -> ShowS
$cshowsPrec :: Int -> UpdateJobShipmentState -> ShowS
Prelude.Show, (forall x. UpdateJobShipmentState -> Rep UpdateJobShipmentState x)
-> (forall x.
Rep UpdateJobShipmentState x -> UpdateJobShipmentState)
-> Generic UpdateJobShipmentState
forall x. Rep UpdateJobShipmentState x -> UpdateJobShipmentState
forall x. UpdateJobShipmentState -> Rep UpdateJobShipmentState x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateJobShipmentState x -> UpdateJobShipmentState
$cfrom :: forall x. UpdateJobShipmentState -> Rep UpdateJobShipmentState x
Prelude.Generic)
newUpdateJobShipmentState ::
Prelude.Text ->
ShipmentState ->
UpdateJobShipmentState
newUpdateJobShipmentState :: Text -> ShipmentState -> UpdateJobShipmentState
newUpdateJobShipmentState Text
pJobId_ ShipmentState
pShipmentState_ =
UpdateJobShipmentState' :: Text -> ShipmentState -> UpdateJobShipmentState
UpdateJobShipmentState'
{ $sel:jobId:UpdateJobShipmentState' :: Text
jobId = Text
pJobId_,
$sel:shipmentState:UpdateJobShipmentState' :: ShipmentState
shipmentState = ShipmentState
pShipmentState_
}
updateJobShipmentState_jobId :: Lens.Lens' UpdateJobShipmentState Prelude.Text
updateJobShipmentState_jobId :: (Text -> f Text)
-> UpdateJobShipmentState -> f UpdateJobShipmentState
updateJobShipmentState_jobId = (UpdateJobShipmentState -> Text)
-> (UpdateJobShipmentState -> Text -> UpdateJobShipmentState)
-> Lens UpdateJobShipmentState UpdateJobShipmentState Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateJobShipmentState' {Text
jobId :: Text
$sel:jobId:UpdateJobShipmentState' :: UpdateJobShipmentState -> Text
jobId} -> Text
jobId) (\s :: UpdateJobShipmentState
s@UpdateJobShipmentState' {} Text
a -> UpdateJobShipmentState
s {$sel:jobId:UpdateJobShipmentState' :: Text
jobId = Text
a} :: UpdateJobShipmentState)
updateJobShipmentState_shipmentState :: Lens.Lens' UpdateJobShipmentState ShipmentState
updateJobShipmentState_shipmentState :: (ShipmentState -> f ShipmentState)
-> UpdateJobShipmentState -> f UpdateJobShipmentState
updateJobShipmentState_shipmentState = (UpdateJobShipmentState -> ShipmentState)
-> (UpdateJobShipmentState
-> ShipmentState -> UpdateJobShipmentState)
-> Lens
UpdateJobShipmentState
UpdateJobShipmentState
ShipmentState
ShipmentState
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateJobShipmentState' {ShipmentState
shipmentState :: ShipmentState
$sel:shipmentState:UpdateJobShipmentState' :: UpdateJobShipmentState -> ShipmentState
shipmentState} -> ShipmentState
shipmentState) (\s :: UpdateJobShipmentState
s@UpdateJobShipmentState' {} ShipmentState
a -> UpdateJobShipmentState
s {$sel:shipmentState:UpdateJobShipmentState' :: ShipmentState
shipmentState = ShipmentState
a} :: UpdateJobShipmentState)
instance Core.AWSRequest UpdateJobShipmentState where
type
AWSResponse UpdateJobShipmentState =
UpdateJobShipmentStateResponse
request :: UpdateJobShipmentState -> Request UpdateJobShipmentState
request = Service -> UpdateJobShipmentState -> Request UpdateJobShipmentState
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy UpdateJobShipmentState
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateJobShipmentState)))
response =
(Int
-> ResponseHeaders
-> ()
-> Either String (AWSResponse UpdateJobShipmentState))
-> Logger
-> Service
-> Proxy UpdateJobShipmentState
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse UpdateJobShipmentState)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
( \Int
s ResponseHeaders
h ()
x ->
Int -> UpdateJobShipmentStateResponse
UpdateJobShipmentStateResponse'
(Int -> UpdateJobShipmentStateResponse)
-> Either String Int
-> Either String UpdateJobShipmentStateResponse
forall (f :: * -> *) a b. Functor 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 UpdateJobShipmentState
instance Prelude.NFData UpdateJobShipmentState
instance Core.ToHeaders UpdateJobShipmentState where
toHeaders :: UpdateJobShipmentState -> ResponseHeaders
toHeaders =
ResponseHeaders -> UpdateJobShipmentState -> 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
"AWSIESnowballJobManagementService.UpdateJobShipmentState" ::
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 UpdateJobShipmentState where
toJSON :: UpdateJobShipmentState -> Value
toJSON UpdateJobShipmentState' {Text
ShipmentState
shipmentState :: ShipmentState
jobId :: Text
$sel:shipmentState:UpdateJobShipmentState' :: UpdateJobShipmentState -> ShipmentState
$sel:jobId:UpdateJobShipmentState' :: UpdateJobShipmentState -> 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
"JobId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
jobId),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"ShipmentState" Text -> ShipmentState -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= ShipmentState
shipmentState)
]
)
instance Core.ToPath UpdateJobShipmentState where
toPath :: UpdateJobShipmentState -> ByteString
toPath = ByteString -> UpdateJobShipmentState -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery UpdateJobShipmentState where
toQuery :: UpdateJobShipmentState -> QueryString
toQuery = QueryString -> UpdateJobShipmentState -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data UpdateJobShipmentStateResponse = UpdateJobShipmentStateResponse'
{
UpdateJobShipmentStateResponse -> Int
httpStatus :: Prelude.Int
}
deriving (UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool
(UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool)
-> (UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool)
-> Eq UpdateJobShipmentStateResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool
$c/= :: UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool
== :: UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool
$c== :: UpdateJobShipmentStateResponse
-> UpdateJobShipmentStateResponse -> Bool
Prelude.Eq, ReadPrec [UpdateJobShipmentStateResponse]
ReadPrec UpdateJobShipmentStateResponse
Int -> ReadS UpdateJobShipmentStateResponse
ReadS [UpdateJobShipmentStateResponse]
(Int -> ReadS UpdateJobShipmentStateResponse)
-> ReadS [UpdateJobShipmentStateResponse]
-> ReadPrec UpdateJobShipmentStateResponse
-> ReadPrec [UpdateJobShipmentStateResponse]
-> Read UpdateJobShipmentStateResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateJobShipmentStateResponse]
$creadListPrec :: ReadPrec [UpdateJobShipmentStateResponse]
readPrec :: ReadPrec UpdateJobShipmentStateResponse
$creadPrec :: ReadPrec UpdateJobShipmentStateResponse
readList :: ReadS [UpdateJobShipmentStateResponse]
$creadList :: ReadS [UpdateJobShipmentStateResponse]
readsPrec :: Int -> ReadS UpdateJobShipmentStateResponse
$creadsPrec :: Int -> ReadS UpdateJobShipmentStateResponse
Prelude.Read, Int -> UpdateJobShipmentStateResponse -> ShowS
[UpdateJobShipmentStateResponse] -> ShowS
UpdateJobShipmentStateResponse -> String
(Int -> UpdateJobShipmentStateResponse -> ShowS)
-> (UpdateJobShipmentStateResponse -> String)
-> ([UpdateJobShipmentStateResponse] -> ShowS)
-> Show UpdateJobShipmentStateResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateJobShipmentStateResponse] -> ShowS
$cshowList :: [UpdateJobShipmentStateResponse] -> ShowS
show :: UpdateJobShipmentStateResponse -> String
$cshow :: UpdateJobShipmentStateResponse -> String
showsPrec :: Int -> UpdateJobShipmentStateResponse -> ShowS
$cshowsPrec :: Int -> UpdateJobShipmentStateResponse -> ShowS
Prelude.Show, (forall x.
UpdateJobShipmentStateResponse
-> Rep UpdateJobShipmentStateResponse x)
-> (forall x.
Rep UpdateJobShipmentStateResponse x
-> UpdateJobShipmentStateResponse)
-> Generic UpdateJobShipmentStateResponse
forall x.
Rep UpdateJobShipmentStateResponse x
-> UpdateJobShipmentStateResponse
forall x.
UpdateJobShipmentStateResponse
-> Rep UpdateJobShipmentStateResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep UpdateJobShipmentStateResponse x
-> UpdateJobShipmentStateResponse
$cfrom :: forall x.
UpdateJobShipmentStateResponse
-> Rep UpdateJobShipmentStateResponse x
Prelude.Generic)
newUpdateJobShipmentStateResponse ::
Prelude.Int ->
UpdateJobShipmentStateResponse
newUpdateJobShipmentStateResponse :: Int -> UpdateJobShipmentStateResponse
newUpdateJobShipmentStateResponse Int
pHttpStatus_ =
UpdateJobShipmentStateResponse' :: Int -> UpdateJobShipmentStateResponse
UpdateJobShipmentStateResponse'
{ $sel:httpStatus:UpdateJobShipmentStateResponse' :: Int
httpStatus =
Int
pHttpStatus_
}
updateJobShipmentStateResponse_httpStatus :: Lens.Lens' UpdateJobShipmentStateResponse Prelude.Int
updateJobShipmentStateResponse_httpStatus :: (Int -> f Int)
-> UpdateJobShipmentStateResponse
-> f UpdateJobShipmentStateResponse
updateJobShipmentStateResponse_httpStatus = (UpdateJobShipmentStateResponse -> Int)
-> (UpdateJobShipmentStateResponse
-> Int -> UpdateJobShipmentStateResponse)
-> Lens
UpdateJobShipmentStateResponse
UpdateJobShipmentStateResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateJobShipmentStateResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateJobShipmentStateResponse' :: UpdateJobShipmentStateResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateJobShipmentStateResponse
s@UpdateJobShipmentStateResponse' {} Int
a -> UpdateJobShipmentStateResponse
s {$sel:httpStatus:UpdateJobShipmentStateResponse' :: Int
httpStatus = Int
a} :: UpdateJobShipmentStateResponse)
instance
Prelude.NFData
UpdateJobShipmentStateResponse