{-# 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.DataSync.CreateLocationS3
(
CreateLocationS3 (..),
newCreateLocationS3,
createLocationS3_agentArns,
createLocationS3_s3StorageClass,
createLocationS3_subdirectory,
createLocationS3_tags,
createLocationS3_s3BucketArn,
createLocationS3_s3Config,
CreateLocationS3Response (..),
newCreateLocationS3Response,
createLocationS3Response_locationArn,
createLocationS3Response_httpStatus,
)
where
import qualified Amazonka.Core as Core
import Amazonka.DataSync.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 CreateLocationS3 = CreateLocationS3'
{
CreateLocationS3 -> Maybe (NonEmpty Text)
agentArns :: Prelude.Maybe (Prelude.NonEmpty Prelude.Text),
CreateLocationS3 -> Maybe S3StorageClass
s3StorageClass :: Prelude.Maybe S3StorageClass,
CreateLocationS3 -> Maybe Text
subdirectory :: Prelude.Maybe Prelude.Text,
CreateLocationS3 -> Maybe [TagListEntry]
tags :: Prelude.Maybe [TagListEntry],
CreateLocationS3 -> Text
s3BucketArn :: Prelude.Text,
CreateLocationS3 -> S3Config
s3Config :: S3Config
}
deriving (CreateLocationS3 -> CreateLocationS3 -> Bool
(CreateLocationS3 -> CreateLocationS3 -> Bool)
-> (CreateLocationS3 -> CreateLocationS3 -> Bool)
-> Eq CreateLocationS3
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateLocationS3 -> CreateLocationS3 -> Bool
$c/= :: CreateLocationS3 -> CreateLocationS3 -> Bool
== :: CreateLocationS3 -> CreateLocationS3 -> Bool
$c== :: CreateLocationS3 -> CreateLocationS3 -> Bool
Prelude.Eq, ReadPrec [CreateLocationS3]
ReadPrec CreateLocationS3
Int -> ReadS CreateLocationS3
ReadS [CreateLocationS3]
(Int -> ReadS CreateLocationS3)
-> ReadS [CreateLocationS3]
-> ReadPrec CreateLocationS3
-> ReadPrec [CreateLocationS3]
-> Read CreateLocationS3
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateLocationS3]
$creadListPrec :: ReadPrec [CreateLocationS3]
readPrec :: ReadPrec CreateLocationS3
$creadPrec :: ReadPrec CreateLocationS3
readList :: ReadS [CreateLocationS3]
$creadList :: ReadS [CreateLocationS3]
readsPrec :: Int -> ReadS CreateLocationS3
$creadsPrec :: Int -> ReadS CreateLocationS3
Prelude.Read, Int -> CreateLocationS3 -> ShowS
[CreateLocationS3] -> ShowS
CreateLocationS3 -> String
(Int -> CreateLocationS3 -> ShowS)
-> (CreateLocationS3 -> String)
-> ([CreateLocationS3] -> ShowS)
-> Show CreateLocationS3
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateLocationS3] -> ShowS
$cshowList :: [CreateLocationS3] -> ShowS
show :: CreateLocationS3 -> String
$cshow :: CreateLocationS3 -> String
showsPrec :: Int -> CreateLocationS3 -> ShowS
$cshowsPrec :: Int -> CreateLocationS3 -> ShowS
Prelude.Show, (forall x. CreateLocationS3 -> Rep CreateLocationS3 x)
-> (forall x. Rep CreateLocationS3 x -> CreateLocationS3)
-> Generic CreateLocationS3
forall x. Rep CreateLocationS3 x -> CreateLocationS3
forall x. CreateLocationS3 -> Rep CreateLocationS3 x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep CreateLocationS3 x -> CreateLocationS3
$cfrom :: forall x. CreateLocationS3 -> Rep CreateLocationS3 x
Prelude.Generic)
newCreateLocationS3 ::
Prelude.Text ->
S3Config ->
CreateLocationS3
newCreateLocationS3 :: Text -> S3Config -> CreateLocationS3
newCreateLocationS3 Text
pS3BucketArn_ S3Config
pS3Config_ =
CreateLocationS3' :: Maybe (NonEmpty Text)
-> Maybe S3StorageClass
-> Maybe Text
-> Maybe [TagListEntry]
-> Text
-> S3Config
-> CreateLocationS3
CreateLocationS3'
{ $sel:agentArns:CreateLocationS3' :: Maybe (NonEmpty Text)
agentArns = Maybe (NonEmpty Text)
forall a. Maybe a
Prelude.Nothing,
$sel:s3StorageClass:CreateLocationS3' :: Maybe S3StorageClass
s3StorageClass = Maybe S3StorageClass
forall a. Maybe a
Prelude.Nothing,
$sel:subdirectory:CreateLocationS3' :: Maybe Text
subdirectory = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:tags:CreateLocationS3' :: Maybe [TagListEntry]
tags = Maybe [TagListEntry]
forall a. Maybe a
Prelude.Nothing,
$sel:s3BucketArn:CreateLocationS3' :: Text
s3BucketArn = Text
pS3BucketArn_,
$sel:s3Config:CreateLocationS3' :: S3Config
s3Config = S3Config
pS3Config_
}
createLocationS3_agentArns :: Lens.Lens' CreateLocationS3 (Prelude.Maybe (Prelude.NonEmpty Prelude.Text))
createLocationS3_agentArns :: (Maybe (NonEmpty Text) -> f (Maybe (NonEmpty Text)))
-> CreateLocationS3 -> f CreateLocationS3
createLocationS3_agentArns = (CreateLocationS3 -> Maybe (NonEmpty Text))
-> (CreateLocationS3 -> Maybe (NonEmpty Text) -> CreateLocationS3)
-> Lens
CreateLocationS3
CreateLocationS3
(Maybe (NonEmpty Text))
(Maybe (NonEmpty Text))
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3' {Maybe (NonEmpty Text)
agentArns :: Maybe (NonEmpty Text)
$sel:agentArns:CreateLocationS3' :: CreateLocationS3 -> Maybe (NonEmpty Text)
agentArns} -> Maybe (NonEmpty Text)
agentArns) (\s :: CreateLocationS3
s@CreateLocationS3' {} Maybe (NonEmpty Text)
a -> CreateLocationS3
s {$sel:agentArns:CreateLocationS3' :: Maybe (NonEmpty Text)
agentArns = Maybe (NonEmpty Text)
a} :: CreateLocationS3) ((Maybe (NonEmpty Text) -> f (Maybe (NonEmpty Text)))
-> CreateLocationS3 -> f CreateLocationS3)
-> ((Maybe (NonEmpty Text) -> f (Maybe (NonEmpty Text)))
-> Maybe (NonEmpty Text) -> f (Maybe (NonEmpty Text)))
-> (Maybe (NonEmpty Text) -> f (Maybe (NonEmpty Text)))
-> CreateLocationS3
-> f CreateLocationS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
(NonEmpty Text) (NonEmpty Text) (NonEmpty Text) (NonEmpty Text)
-> Iso
(Maybe (NonEmpty Text))
(Maybe (NonEmpty Text))
(Maybe (NonEmpty Text))
(Maybe (NonEmpty 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
(NonEmpty Text) (NonEmpty Text) (NonEmpty Text) (NonEmpty Text)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
createLocationS3_s3StorageClass :: Lens.Lens' CreateLocationS3 (Prelude.Maybe S3StorageClass)
createLocationS3_s3StorageClass :: (Maybe S3StorageClass -> f (Maybe S3StorageClass))
-> CreateLocationS3 -> f CreateLocationS3
createLocationS3_s3StorageClass = (CreateLocationS3 -> Maybe S3StorageClass)
-> (CreateLocationS3 -> Maybe S3StorageClass -> CreateLocationS3)
-> Lens
CreateLocationS3
CreateLocationS3
(Maybe S3StorageClass)
(Maybe S3StorageClass)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3' {Maybe S3StorageClass
s3StorageClass :: Maybe S3StorageClass
$sel:s3StorageClass:CreateLocationS3' :: CreateLocationS3 -> Maybe S3StorageClass
s3StorageClass} -> Maybe S3StorageClass
s3StorageClass) (\s :: CreateLocationS3
s@CreateLocationS3' {} Maybe S3StorageClass
a -> CreateLocationS3
s {$sel:s3StorageClass:CreateLocationS3' :: Maybe S3StorageClass
s3StorageClass = Maybe S3StorageClass
a} :: CreateLocationS3)
createLocationS3_subdirectory :: Lens.Lens' CreateLocationS3 (Prelude.Maybe Prelude.Text)
createLocationS3_subdirectory :: (Maybe Text -> f (Maybe Text))
-> CreateLocationS3 -> f CreateLocationS3
createLocationS3_subdirectory = (CreateLocationS3 -> Maybe Text)
-> (CreateLocationS3 -> Maybe Text -> CreateLocationS3)
-> Lens CreateLocationS3 CreateLocationS3 (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3' {Maybe Text
subdirectory :: Maybe Text
$sel:subdirectory:CreateLocationS3' :: CreateLocationS3 -> Maybe Text
subdirectory} -> Maybe Text
subdirectory) (\s :: CreateLocationS3
s@CreateLocationS3' {} Maybe Text
a -> CreateLocationS3
s {$sel:subdirectory:CreateLocationS3' :: Maybe Text
subdirectory = Maybe Text
a} :: CreateLocationS3)
createLocationS3_tags :: Lens.Lens' CreateLocationS3 (Prelude.Maybe [TagListEntry])
createLocationS3_tags :: (Maybe [TagListEntry] -> f (Maybe [TagListEntry]))
-> CreateLocationS3 -> f CreateLocationS3
createLocationS3_tags = (CreateLocationS3 -> Maybe [TagListEntry])
-> (CreateLocationS3 -> Maybe [TagListEntry] -> CreateLocationS3)
-> Lens
CreateLocationS3
CreateLocationS3
(Maybe [TagListEntry])
(Maybe [TagListEntry])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3' {Maybe [TagListEntry]
tags :: Maybe [TagListEntry]
$sel:tags:CreateLocationS3' :: CreateLocationS3 -> Maybe [TagListEntry]
tags} -> Maybe [TagListEntry]
tags) (\s :: CreateLocationS3
s@CreateLocationS3' {} Maybe [TagListEntry]
a -> CreateLocationS3
s {$sel:tags:CreateLocationS3' :: Maybe [TagListEntry]
tags = Maybe [TagListEntry]
a} :: CreateLocationS3) ((Maybe [TagListEntry] -> f (Maybe [TagListEntry]))
-> CreateLocationS3 -> f CreateLocationS3)
-> ((Maybe [TagListEntry] -> f (Maybe [TagListEntry]))
-> Maybe [TagListEntry] -> f (Maybe [TagListEntry]))
-> (Maybe [TagListEntry] -> f (Maybe [TagListEntry]))
-> CreateLocationS3
-> f CreateLocationS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [TagListEntry] [TagListEntry] [TagListEntry] [TagListEntry]
-> Iso
(Maybe [TagListEntry])
(Maybe [TagListEntry])
(Maybe [TagListEntry])
(Maybe [TagListEntry])
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 [TagListEntry] [TagListEntry] [TagListEntry] [TagListEntry]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
createLocationS3_s3BucketArn :: Lens.Lens' CreateLocationS3 Prelude.Text
createLocationS3_s3BucketArn :: (Text -> f Text) -> CreateLocationS3 -> f CreateLocationS3
createLocationS3_s3BucketArn = (CreateLocationS3 -> Text)
-> (CreateLocationS3 -> Text -> CreateLocationS3)
-> Lens CreateLocationS3 CreateLocationS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3' {Text
s3BucketArn :: Text
$sel:s3BucketArn:CreateLocationS3' :: CreateLocationS3 -> Text
s3BucketArn} -> Text
s3BucketArn) (\s :: CreateLocationS3
s@CreateLocationS3' {} Text
a -> CreateLocationS3
s {$sel:s3BucketArn:CreateLocationS3' :: Text
s3BucketArn = Text
a} :: CreateLocationS3)
createLocationS3_s3Config :: Lens.Lens' CreateLocationS3 S3Config
createLocationS3_s3Config :: (S3Config -> f S3Config) -> CreateLocationS3 -> f CreateLocationS3
createLocationS3_s3Config = (CreateLocationS3 -> S3Config)
-> (CreateLocationS3 -> S3Config -> CreateLocationS3)
-> Lens CreateLocationS3 CreateLocationS3 S3Config S3Config
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3' {S3Config
s3Config :: S3Config
$sel:s3Config:CreateLocationS3' :: CreateLocationS3 -> S3Config
s3Config} -> S3Config
s3Config) (\s :: CreateLocationS3
s@CreateLocationS3' {} S3Config
a -> CreateLocationS3
s {$sel:s3Config:CreateLocationS3' :: S3Config
s3Config = S3Config
a} :: CreateLocationS3)
instance Core.AWSRequest CreateLocationS3 where
type
AWSResponse CreateLocationS3 =
CreateLocationS3Response
request :: CreateLocationS3 -> Request CreateLocationS3
request = Service -> CreateLocationS3 -> Request CreateLocationS3
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy CreateLocationS3
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateLocationS3)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse CreateLocationS3))
-> Logger
-> Service
-> Proxy CreateLocationS3
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse CreateLocationS3)))
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 -> Int -> CreateLocationS3Response
CreateLocationS3Response'
(Maybe Text -> Int -> CreateLocationS3Response)
-> Either String (Maybe Text)
-> Either String (Int -> CreateLocationS3Response)
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
"LocationArn")
Either String (Int -> CreateLocationS3Response)
-> Either String Int -> Either String CreateLocationS3Response
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 CreateLocationS3
instance Prelude.NFData CreateLocationS3
instance Core.ToHeaders CreateLocationS3 where
toHeaders :: CreateLocationS3 -> ResponseHeaders
toHeaders =
ResponseHeaders -> CreateLocationS3 -> 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
"FmrsService.CreateLocationS3" ::
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 CreateLocationS3 where
toJSON :: CreateLocationS3 -> Value
toJSON CreateLocationS3' {Maybe [TagListEntry]
Maybe (NonEmpty Text)
Maybe Text
Maybe S3StorageClass
Text
S3Config
s3Config :: S3Config
s3BucketArn :: Text
tags :: Maybe [TagListEntry]
subdirectory :: Maybe Text
s3StorageClass :: Maybe S3StorageClass
agentArns :: Maybe (NonEmpty Text)
$sel:s3Config:CreateLocationS3' :: CreateLocationS3 -> S3Config
$sel:s3BucketArn:CreateLocationS3' :: CreateLocationS3 -> Text
$sel:tags:CreateLocationS3' :: CreateLocationS3 -> Maybe [TagListEntry]
$sel:subdirectory:CreateLocationS3' :: CreateLocationS3 -> Maybe Text
$sel:s3StorageClass:CreateLocationS3' :: CreateLocationS3 -> Maybe S3StorageClass
$sel:agentArns:CreateLocationS3' :: CreateLocationS3 -> Maybe (NonEmpty Text)
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"AgentArns" Text -> NonEmpty Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (NonEmpty Text -> Pair) -> Maybe (NonEmpty Text) -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (NonEmpty Text)
agentArns,
(Text
"S3StorageClass" Text -> S3StorageClass -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
(S3StorageClass -> Pair) -> Maybe S3StorageClass -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3StorageClass
s3StorageClass,
(Text
"Subdirectory" 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
subdirectory,
(Text
"Tags" Text -> [TagListEntry] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) ([TagListEntry] -> Pair) -> Maybe [TagListEntry] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TagListEntry]
tags,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"S3BucketArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
s3BucketArn),
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"S3Config" Text -> S3Config -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= S3Config
s3Config)
]
)
instance Core.ToPath CreateLocationS3 where
toPath :: CreateLocationS3 -> ByteString
toPath = ByteString -> CreateLocationS3 -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery CreateLocationS3 where
toQuery :: CreateLocationS3 -> QueryString
toQuery = QueryString -> CreateLocationS3 -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data CreateLocationS3Response = CreateLocationS3Response'
{
CreateLocationS3Response -> Maybe Text
locationArn :: Prelude.Maybe Prelude.Text,
CreateLocationS3Response -> Int
httpStatus :: Prelude.Int
}
deriving (CreateLocationS3Response -> CreateLocationS3Response -> Bool
(CreateLocationS3Response -> CreateLocationS3Response -> Bool)
-> (CreateLocationS3Response -> CreateLocationS3Response -> Bool)
-> Eq CreateLocationS3Response
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CreateLocationS3Response -> CreateLocationS3Response -> Bool
$c/= :: CreateLocationS3Response -> CreateLocationS3Response -> Bool
== :: CreateLocationS3Response -> CreateLocationS3Response -> Bool
$c== :: CreateLocationS3Response -> CreateLocationS3Response -> Bool
Prelude.Eq, ReadPrec [CreateLocationS3Response]
ReadPrec CreateLocationS3Response
Int -> ReadS CreateLocationS3Response
ReadS [CreateLocationS3Response]
(Int -> ReadS CreateLocationS3Response)
-> ReadS [CreateLocationS3Response]
-> ReadPrec CreateLocationS3Response
-> ReadPrec [CreateLocationS3Response]
-> Read CreateLocationS3Response
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [CreateLocationS3Response]
$creadListPrec :: ReadPrec [CreateLocationS3Response]
readPrec :: ReadPrec CreateLocationS3Response
$creadPrec :: ReadPrec CreateLocationS3Response
readList :: ReadS [CreateLocationS3Response]
$creadList :: ReadS [CreateLocationS3Response]
readsPrec :: Int -> ReadS CreateLocationS3Response
$creadsPrec :: Int -> ReadS CreateLocationS3Response
Prelude.Read, Int -> CreateLocationS3Response -> ShowS
[CreateLocationS3Response] -> ShowS
CreateLocationS3Response -> String
(Int -> CreateLocationS3Response -> ShowS)
-> (CreateLocationS3Response -> String)
-> ([CreateLocationS3Response] -> ShowS)
-> Show CreateLocationS3Response
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CreateLocationS3Response] -> ShowS
$cshowList :: [CreateLocationS3Response] -> ShowS
show :: CreateLocationS3Response -> String
$cshow :: CreateLocationS3Response -> String
showsPrec :: Int -> CreateLocationS3Response -> ShowS
$cshowsPrec :: Int -> CreateLocationS3Response -> ShowS
Prelude.Show, (forall x.
CreateLocationS3Response -> Rep CreateLocationS3Response x)
-> (forall x.
Rep CreateLocationS3Response x -> CreateLocationS3Response)
-> Generic CreateLocationS3Response
forall x.
Rep CreateLocationS3Response x -> CreateLocationS3Response
forall x.
CreateLocationS3Response -> Rep CreateLocationS3Response x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep CreateLocationS3Response x -> CreateLocationS3Response
$cfrom :: forall x.
CreateLocationS3Response -> Rep CreateLocationS3Response x
Prelude.Generic)
newCreateLocationS3Response ::
Prelude.Int ->
CreateLocationS3Response
newCreateLocationS3Response :: Int -> CreateLocationS3Response
newCreateLocationS3Response Int
pHttpStatus_ =
CreateLocationS3Response' :: Maybe Text -> Int -> CreateLocationS3Response
CreateLocationS3Response'
{ $sel:locationArn:CreateLocationS3Response' :: Maybe Text
locationArn =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:CreateLocationS3Response' :: Int
httpStatus = Int
pHttpStatus_
}
createLocationS3Response_locationArn :: Lens.Lens' CreateLocationS3Response (Prelude.Maybe Prelude.Text)
createLocationS3Response_locationArn :: (Maybe Text -> f (Maybe Text))
-> CreateLocationS3Response -> f CreateLocationS3Response
createLocationS3Response_locationArn = (CreateLocationS3Response -> Maybe Text)
-> (CreateLocationS3Response
-> Maybe Text -> CreateLocationS3Response)
-> Lens
CreateLocationS3Response
CreateLocationS3Response
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3Response' {Maybe Text
locationArn :: Maybe Text
$sel:locationArn:CreateLocationS3Response' :: CreateLocationS3Response -> Maybe Text
locationArn} -> Maybe Text
locationArn) (\s :: CreateLocationS3Response
s@CreateLocationS3Response' {} Maybe Text
a -> CreateLocationS3Response
s {$sel:locationArn:CreateLocationS3Response' :: Maybe Text
locationArn = Maybe Text
a} :: CreateLocationS3Response)
createLocationS3Response_httpStatus :: Lens.Lens' CreateLocationS3Response Prelude.Int
createLocationS3Response_httpStatus :: (Int -> f Int)
-> CreateLocationS3Response -> f CreateLocationS3Response
createLocationS3Response_httpStatus = (CreateLocationS3Response -> Int)
-> (CreateLocationS3Response -> Int -> CreateLocationS3Response)
-> Lens CreateLocationS3Response CreateLocationS3Response Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\CreateLocationS3Response' {Int
httpStatus :: Int
$sel:httpStatus:CreateLocationS3Response' :: CreateLocationS3Response -> Int
httpStatus} -> Int
httpStatus) (\s :: CreateLocationS3Response
s@CreateLocationS3Response' {} Int
a -> CreateLocationS3Response
s {$sel:httpStatus:CreateLocationS3Response' :: Int
httpStatus = Int
a} :: CreateLocationS3Response)
instance Prelude.NFData CreateLocationS3Response