{-# 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.SNS.SetPlatformApplicationAttributes
(
SetPlatformApplicationAttributes (..),
newSetPlatformApplicationAttributes,
setPlatformApplicationAttributes_platformApplicationArn,
setPlatformApplicationAttributes_attributes,
SetPlatformApplicationAttributesResponse (..),
newSetPlatformApplicationAttributesResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.SNS.Types
data SetPlatformApplicationAttributes = SetPlatformApplicationAttributes'
{
SetPlatformApplicationAttributes -> Text
platformApplicationArn :: Prelude.Text,
SetPlatformApplicationAttributes -> HashMap Text Text
attributes :: Prelude.HashMap Prelude.Text Prelude.Text
}
deriving (SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool
(SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool)
-> (SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool)
-> Eq SetPlatformApplicationAttributes
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool
== :: SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool
$c/= :: SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool
/= :: SetPlatformApplicationAttributes
-> SetPlatformApplicationAttributes -> Bool
Prelude.Eq, ReadPrec [SetPlatformApplicationAttributes]
ReadPrec SetPlatformApplicationAttributes
Int -> ReadS SetPlatformApplicationAttributes
ReadS [SetPlatformApplicationAttributes]
(Int -> ReadS SetPlatformApplicationAttributes)
-> ReadS [SetPlatformApplicationAttributes]
-> ReadPrec SetPlatformApplicationAttributes
-> ReadPrec [SetPlatformApplicationAttributes]
-> Read SetPlatformApplicationAttributes
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
$creadsPrec :: Int -> ReadS SetPlatformApplicationAttributes
readsPrec :: Int -> ReadS SetPlatformApplicationAttributes
$creadList :: ReadS [SetPlatformApplicationAttributes]
readList :: ReadS [SetPlatformApplicationAttributes]
$creadPrec :: ReadPrec SetPlatformApplicationAttributes
readPrec :: ReadPrec SetPlatformApplicationAttributes
$creadListPrec :: ReadPrec [SetPlatformApplicationAttributes]
readListPrec :: ReadPrec [SetPlatformApplicationAttributes]
Prelude.Read, Int -> SetPlatformApplicationAttributes -> ShowS
[SetPlatformApplicationAttributes] -> ShowS
SetPlatformApplicationAttributes -> String
(Int -> SetPlatformApplicationAttributes -> ShowS)
-> (SetPlatformApplicationAttributes -> String)
-> ([SetPlatformApplicationAttributes] -> ShowS)
-> Show SetPlatformApplicationAttributes
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SetPlatformApplicationAttributes -> ShowS
showsPrec :: Int -> SetPlatformApplicationAttributes -> ShowS
$cshow :: SetPlatformApplicationAttributes -> String
show :: SetPlatformApplicationAttributes -> String
$cshowList :: [SetPlatformApplicationAttributes] -> ShowS
showList :: [SetPlatformApplicationAttributes] -> ShowS
Prelude.Show, (forall x.
SetPlatformApplicationAttributes
-> Rep SetPlatformApplicationAttributes x)
-> (forall x.
Rep SetPlatformApplicationAttributes x
-> SetPlatformApplicationAttributes)
-> Generic SetPlatformApplicationAttributes
forall x.
Rep SetPlatformApplicationAttributes x
-> SetPlatformApplicationAttributes
forall x.
SetPlatformApplicationAttributes
-> Rep SetPlatformApplicationAttributes x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cfrom :: forall x.
SetPlatformApplicationAttributes
-> Rep SetPlatformApplicationAttributes x
from :: forall x.
SetPlatformApplicationAttributes
-> Rep SetPlatformApplicationAttributes x
$cto :: forall x.
Rep SetPlatformApplicationAttributes x
-> SetPlatformApplicationAttributes
to :: forall x.
Rep SetPlatformApplicationAttributes x
-> SetPlatformApplicationAttributes
Prelude.Generic)
newSetPlatformApplicationAttributes ::
Prelude.Text ->
SetPlatformApplicationAttributes
newSetPlatformApplicationAttributes :: Text -> SetPlatformApplicationAttributes
newSetPlatformApplicationAttributes
Text
pPlatformApplicationArn_ =
SetPlatformApplicationAttributes'
{ platformApplicationArn :: Text
platformApplicationArn =
Text
pPlatformApplicationArn_,
attributes :: HashMap Text Text
attributes = HashMap Text Text
forall a. Monoid a => a
Prelude.mempty
}
setPlatformApplicationAttributes_platformApplicationArn :: Lens.Lens' SetPlatformApplicationAttributes Prelude.Text
setPlatformApplicationAttributes_platformApplicationArn :: Lens' SetPlatformApplicationAttributes Text
setPlatformApplicationAttributes_platformApplicationArn = (SetPlatformApplicationAttributes -> Text)
-> (SetPlatformApplicationAttributes
-> Text -> SetPlatformApplicationAttributes)
-> Lens' SetPlatformApplicationAttributes Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SetPlatformApplicationAttributes' {Text
platformApplicationArn :: SetPlatformApplicationAttributes -> Text
platformApplicationArn :: Text
platformApplicationArn} -> Text
platformApplicationArn) (\s :: SetPlatformApplicationAttributes
s@SetPlatformApplicationAttributes' {} Text
a -> SetPlatformApplicationAttributes
s {platformApplicationArn = a} :: SetPlatformApplicationAttributes)
setPlatformApplicationAttributes_attributes :: Lens.Lens' SetPlatformApplicationAttributes (Prelude.HashMap Prelude.Text Prelude.Text)
setPlatformApplicationAttributes_attributes :: Lens' SetPlatformApplicationAttributes (HashMap Text Text)
setPlatformApplicationAttributes_attributes = (SetPlatformApplicationAttributes -> HashMap Text Text)
-> (SetPlatformApplicationAttributes
-> HashMap Text Text -> SetPlatformApplicationAttributes)
-> Lens' SetPlatformApplicationAttributes (HashMap Text Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SetPlatformApplicationAttributes' {HashMap Text Text
attributes :: SetPlatformApplicationAttributes -> HashMap Text Text
attributes :: HashMap Text Text
attributes} -> HashMap Text Text
attributes) (\s :: SetPlatformApplicationAttributes
s@SetPlatformApplicationAttributes' {} HashMap Text Text
a -> SetPlatformApplicationAttributes
s {attributes = a} :: SetPlatformApplicationAttributes) ((HashMap Text Text -> f (HashMap Text Text))
-> SetPlatformApplicationAttributes
-> f SetPlatformApplicationAttributes)
-> ((HashMap Text Text -> f (HashMap Text Text))
-> HashMap Text Text -> f (HashMap Text Text))
-> (HashMap Text Text -> f (HashMap Text Text))
-> SetPlatformApplicationAttributes
-> f SetPlatformApplicationAttributes
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (HashMap Text Text -> f (HashMap Text Text))
-> HashMap Text Text -> f (HashMap Text Text)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Iso
(HashMap Text Text)
(HashMap Text Text)
(HashMap Text Text)
(HashMap Text Text)
Lens.coerced
instance
Core.AWSRequest
SetPlatformApplicationAttributes
where
type
AWSResponse SetPlatformApplicationAttributes =
SetPlatformApplicationAttributesResponse
request :: (Service -> Service)
-> SetPlatformApplicationAttributes
-> Request SetPlatformApplicationAttributes
request Service -> Service
overrides =
Service
-> SetPlatformApplicationAttributes
-> Request SetPlatformApplicationAttributes
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery (Service -> Service
overrides Service
defaultService)
response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy SetPlatformApplicationAttributes
-> ClientResponse ClientBody
-> m (Either
Error
(ClientResponse (AWSResponse SetPlatformApplicationAttributes)))
response =
AWSResponse SetPlatformApplicationAttributes
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy SetPlatformApplicationAttributes
-> ClientResponse ClientBody
-> m (Either
Error
(ClientResponse (AWSResponse SetPlatformApplicationAttributes)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull
AWSResponse SetPlatformApplicationAttributes
SetPlatformApplicationAttributesResponse
SetPlatformApplicationAttributesResponse'
instance
Prelude.Hashable
SetPlatformApplicationAttributes
where
hashWithSalt :: Int -> SetPlatformApplicationAttributes -> Int
hashWithSalt
Int
_salt
SetPlatformApplicationAttributes' {Text
HashMap Text Text
platformApplicationArn :: SetPlatformApplicationAttributes -> Text
attributes :: SetPlatformApplicationAttributes -> HashMap Text Text
platformApplicationArn :: Text
attributes :: HashMap Text Text
..} =
Int
_salt
Int -> Text -> Int
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
platformApplicationArn
Int -> HashMap Text Text -> Int
forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` HashMap Text Text
attributes
instance
Prelude.NFData
SetPlatformApplicationAttributes
where
rnf :: SetPlatformApplicationAttributes -> ()
rnf SetPlatformApplicationAttributes' {Text
HashMap Text Text
platformApplicationArn :: SetPlatformApplicationAttributes -> Text
attributes :: SetPlatformApplicationAttributes -> HashMap Text Text
platformApplicationArn :: Text
attributes :: HashMap Text Text
..} =
Text -> ()
forall a. NFData a => a -> ()
Prelude.rnf Text
platformApplicationArn () -> () -> ()
forall a b. a -> b -> b
`Prelude.seq`
HashMap Text Text -> ()
forall a. NFData a => a -> ()
Prelude.rnf HashMap Text Text
attributes
instance
Data.ToHeaders
SetPlatformApplicationAttributes
where
toHeaders :: SetPlatformApplicationAttributes -> [Header]
toHeaders = [Header] -> SetPlatformApplicationAttributes -> [Header]
forall a b. a -> b -> a
Prelude.const [Header]
forall a. Monoid a => a
Prelude.mempty
instance Data.ToPath SetPlatformApplicationAttributes where
toPath :: SetPlatformApplicationAttributes -> ByteString
toPath = ByteString -> SetPlatformApplicationAttributes -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance
Data.ToQuery
SetPlatformApplicationAttributes
where
toQuery :: SetPlatformApplicationAttributes -> QueryString
toQuery SetPlatformApplicationAttributes' {Text
HashMap Text Text
platformApplicationArn :: SetPlatformApplicationAttributes -> Text
attributes :: SetPlatformApplicationAttributes -> HashMap Text Text
platformApplicationArn :: Text
attributes :: HashMap Text Text
..} =
[QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"Action"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: ( ByteString
"SetPlatformApplicationAttributes" ::
Prelude.ByteString
),
ByteString
"Version"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: (ByteString
"2010-03-31" :: Prelude.ByteString),
ByteString
"PlatformApplicationArn"
ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Text
platformApplicationArn,
ByteString
"Attributes"
ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: ByteString
-> ByteString -> ByteString -> HashMap Text Text -> QueryString
forall k v.
(ToQuery k, ToQuery v) =>
ByteString
-> ByteString -> ByteString -> HashMap k v -> QueryString
Data.toQueryMap ByteString
"entry" ByteString
"key" ByteString
"value" HashMap Text Text
attributes
]
data SetPlatformApplicationAttributesResponse = SetPlatformApplicationAttributesResponse'
{
}
deriving (SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool
(SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool)
-> (SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool)
-> Eq SetPlatformApplicationAttributesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool
== :: SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool
$c/= :: SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool
/= :: SetPlatformApplicationAttributesResponse
-> SetPlatformApplicationAttributesResponse -> Bool
Prelude.Eq, ReadPrec [SetPlatformApplicationAttributesResponse]
ReadPrec SetPlatformApplicationAttributesResponse
Int -> ReadS SetPlatformApplicationAttributesResponse
ReadS [SetPlatformApplicationAttributesResponse]
(Int -> ReadS SetPlatformApplicationAttributesResponse)
-> ReadS [SetPlatformApplicationAttributesResponse]
-> ReadPrec SetPlatformApplicationAttributesResponse
-> ReadPrec [SetPlatformApplicationAttributesResponse]
-> Read SetPlatformApplicationAttributesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
$creadsPrec :: Int -> ReadS SetPlatformApplicationAttributesResponse
readsPrec :: Int -> ReadS SetPlatformApplicationAttributesResponse
$creadList :: ReadS [SetPlatformApplicationAttributesResponse]
readList :: ReadS [SetPlatformApplicationAttributesResponse]
$creadPrec :: ReadPrec SetPlatformApplicationAttributesResponse
readPrec :: ReadPrec SetPlatformApplicationAttributesResponse
$creadListPrec :: ReadPrec [SetPlatformApplicationAttributesResponse]
readListPrec :: ReadPrec [SetPlatformApplicationAttributesResponse]
Prelude.Read, Int -> SetPlatformApplicationAttributesResponse -> ShowS
[SetPlatformApplicationAttributesResponse] -> ShowS
SetPlatformApplicationAttributesResponse -> String
(Int -> SetPlatformApplicationAttributesResponse -> ShowS)
-> (SetPlatformApplicationAttributesResponse -> String)
-> ([SetPlatformApplicationAttributesResponse] -> ShowS)
-> Show SetPlatformApplicationAttributesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SetPlatformApplicationAttributesResponse -> ShowS
showsPrec :: Int -> SetPlatformApplicationAttributesResponse -> ShowS
$cshow :: SetPlatformApplicationAttributesResponse -> String
show :: SetPlatformApplicationAttributesResponse -> String
$cshowList :: [SetPlatformApplicationAttributesResponse] -> ShowS
showList :: [SetPlatformApplicationAttributesResponse] -> ShowS
Prelude.Show, (forall x.
SetPlatformApplicationAttributesResponse
-> Rep SetPlatformApplicationAttributesResponse x)
-> (forall x.
Rep SetPlatformApplicationAttributesResponse x
-> SetPlatformApplicationAttributesResponse)
-> Generic SetPlatformApplicationAttributesResponse
forall x.
Rep SetPlatformApplicationAttributesResponse x
-> SetPlatformApplicationAttributesResponse
forall x.
SetPlatformApplicationAttributesResponse
-> Rep SetPlatformApplicationAttributesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cfrom :: forall x.
SetPlatformApplicationAttributesResponse
-> Rep SetPlatformApplicationAttributesResponse x
from :: forall x.
SetPlatformApplicationAttributesResponse
-> Rep SetPlatformApplicationAttributesResponse x
$cto :: forall x.
Rep SetPlatformApplicationAttributesResponse x
-> SetPlatformApplicationAttributesResponse
to :: forall x.
Rep SetPlatformApplicationAttributesResponse x
-> SetPlatformApplicationAttributesResponse
Prelude.Generic)
newSetPlatformApplicationAttributesResponse ::
SetPlatformApplicationAttributesResponse
newSetPlatformApplicationAttributesResponse :: SetPlatformApplicationAttributesResponse
newSetPlatformApplicationAttributesResponse =
SetPlatformApplicationAttributesResponse
SetPlatformApplicationAttributesResponse'
instance
Prelude.NFData
SetPlatformApplicationAttributesResponse
where
rnf :: SetPlatformApplicationAttributesResponse -> ()
rnf SetPlatformApplicationAttributesResponse
_ = ()