{-# 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.AutoScaling.AttachInstances
(
AttachInstances (..),
newAttachInstances,
attachInstances_instanceIds,
attachInstances_autoScalingGroupName,
AttachInstancesResponse (..),
newAttachInstancesResponse,
)
where
import Amazonka.AutoScaling.Types
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
data AttachInstances = AttachInstances'
{
AttachInstances -> Maybe [Text]
instanceIds :: Prelude.Maybe [Prelude.Text],
AttachInstances -> Text
autoScalingGroupName :: Prelude.Text
}
deriving (AttachInstances -> AttachInstances -> Bool
(AttachInstances -> AttachInstances -> Bool)
-> (AttachInstances -> AttachInstances -> Bool)
-> Eq AttachInstances
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AttachInstances -> AttachInstances -> Bool
$c/= :: AttachInstances -> AttachInstances -> Bool
== :: AttachInstances -> AttachInstances -> Bool
$c== :: AttachInstances -> AttachInstances -> Bool
Prelude.Eq, ReadPrec [AttachInstances]
ReadPrec AttachInstances
Int -> ReadS AttachInstances
ReadS [AttachInstances]
(Int -> ReadS AttachInstances)
-> ReadS [AttachInstances]
-> ReadPrec AttachInstances
-> ReadPrec [AttachInstances]
-> Read AttachInstances
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AttachInstances]
$creadListPrec :: ReadPrec [AttachInstances]
readPrec :: ReadPrec AttachInstances
$creadPrec :: ReadPrec AttachInstances
readList :: ReadS [AttachInstances]
$creadList :: ReadS [AttachInstances]
readsPrec :: Int -> ReadS AttachInstances
$creadsPrec :: Int -> ReadS AttachInstances
Prelude.Read, Int -> AttachInstances -> ShowS
[AttachInstances] -> ShowS
AttachInstances -> String
(Int -> AttachInstances -> ShowS)
-> (AttachInstances -> String)
-> ([AttachInstances] -> ShowS)
-> Show AttachInstances
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AttachInstances] -> ShowS
$cshowList :: [AttachInstances] -> ShowS
show :: AttachInstances -> String
$cshow :: AttachInstances -> String
showsPrec :: Int -> AttachInstances -> ShowS
$cshowsPrec :: Int -> AttachInstances -> ShowS
Prelude.Show, (forall x. AttachInstances -> Rep AttachInstances x)
-> (forall x. Rep AttachInstances x -> AttachInstances)
-> Generic AttachInstances
forall x. Rep AttachInstances x -> AttachInstances
forall x. AttachInstances -> Rep AttachInstances x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AttachInstances x -> AttachInstances
$cfrom :: forall x. AttachInstances -> Rep AttachInstances x
Prelude.Generic)
newAttachInstances ::
Prelude.Text ->
AttachInstances
newAttachInstances :: Text -> AttachInstances
newAttachInstances Text
pAutoScalingGroupName_ =
AttachInstances' :: Maybe [Text] -> Text -> AttachInstances
AttachInstances'
{ $sel:instanceIds:AttachInstances' :: Maybe [Text]
instanceIds = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
$sel:autoScalingGroupName:AttachInstances' :: Text
autoScalingGroupName = Text
pAutoScalingGroupName_
}
attachInstances_instanceIds :: Lens.Lens' AttachInstances (Prelude.Maybe [Prelude.Text])
attachInstances_instanceIds :: (Maybe [Text] -> f (Maybe [Text]))
-> AttachInstances -> f AttachInstances
attachInstances_instanceIds = (AttachInstances -> Maybe [Text])
-> (AttachInstances -> Maybe [Text] -> AttachInstances)
-> Lens
AttachInstances AttachInstances (Maybe [Text]) (Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AttachInstances' {Maybe [Text]
instanceIds :: Maybe [Text]
$sel:instanceIds:AttachInstances' :: AttachInstances -> Maybe [Text]
instanceIds} -> Maybe [Text]
instanceIds) (\s :: AttachInstances
s@AttachInstances' {} Maybe [Text]
a -> AttachInstances
s {$sel:instanceIds:AttachInstances' :: Maybe [Text]
instanceIds = Maybe [Text]
a} :: AttachInstances) ((Maybe [Text] -> f (Maybe [Text]))
-> AttachInstances -> f AttachInstances)
-> ((Maybe [Text] -> f (Maybe [Text]))
-> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> AttachInstances
-> f AttachInstances
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
attachInstances_autoScalingGroupName :: Lens.Lens' AttachInstances Prelude.Text
attachInstances_autoScalingGroupName :: (Text -> f Text) -> AttachInstances -> f AttachInstances
attachInstances_autoScalingGroupName = (AttachInstances -> Text)
-> (AttachInstances -> Text -> AttachInstances)
-> Lens AttachInstances AttachInstances Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AttachInstances' {Text
autoScalingGroupName :: Text
$sel:autoScalingGroupName:AttachInstances' :: AttachInstances -> Text
autoScalingGroupName} -> Text
autoScalingGroupName) (\s :: AttachInstances
s@AttachInstances' {} Text
a -> AttachInstances
s {$sel:autoScalingGroupName:AttachInstances' :: Text
autoScalingGroupName = Text
a} :: AttachInstances)
instance Core.AWSRequest AttachInstances where
type
AWSResponse AttachInstances =
AttachInstancesResponse
request :: AttachInstances -> Request AttachInstances
request = Service -> AttachInstances -> Request AttachInstances
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
response :: Logger
-> Service
-> Proxy AttachInstances
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AttachInstances)))
response =
AWSResponse AttachInstances
-> Logger
-> Service
-> Proxy AttachInstances
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AttachInstances)))
forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull AWSResponse AttachInstances
AttachInstancesResponse
AttachInstancesResponse'
instance Prelude.Hashable AttachInstances
instance Prelude.NFData AttachInstances
instance Core.ToHeaders AttachInstances where
toHeaders :: AttachInstances -> [Header]
toHeaders = [Header] -> AttachInstances -> [Header]
forall a b. a -> b -> a
Prelude.const [Header]
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath AttachInstances where
toPath :: AttachInstances -> ByteString
toPath = ByteString -> AttachInstances -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery AttachInstances where
toQuery :: AttachInstances -> QueryString
toQuery AttachInstances' {Maybe [Text]
Text
autoScalingGroupName :: Text
instanceIds :: Maybe [Text]
$sel:autoScalingGroupName:AttachInstances' :: AttachInstances -> Text
$sel:instanceIds:AttachInstances' :: AttachInstances -> Maybe [Text]
..} =
[QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"Action"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"AttachInstances" :: Prelude.ByteString),
ByteString
"Version"
ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"2011-01-01" :: Prelude.ByteString),
ByteString
"InstanceIds"
ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
(ByteString -> [Text] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"member" ([Text] -> QueryString) -> Maybe [Text] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Text]
instanceIds),
ByteString
"AutoScalingGroupName" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
autoScalingGroupName
]
data AttachInstancesResponse = AttachInstancesResponse'
{
}
deriving (AttachInstancesResponse -> AttachInstancesResponse -> Bool
(AttachInstancesResponse -> AttachInstancesResponse -> Bool)
-> (AttachInstancesResponse -> AttachInstancesResponse -> Bool)
-> Eq AttachInstancesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AttachInstancesResponse -> AttachInstancesResponse -> Bool
$c/= :: AttachInstancesResponse -> AttachInstancesResponse -> Bool
== :: AttachInstancesResponse -> AttachInstancesResponse -> Bool
$c== :: AttachInstancesResponse -> AttachInstancesResponse -> Bool
Prelude.Eq, ReadPrec [AttachInstancesResponse]
ReadPrec AttachInstancesResponse
Int -> ReadS AttachInstancesResponse
ReadS [AttachInstancesResponse]
(Int -> ReadS AttachInstancesResponse)
-> ReadS [AttachInstancesResponse]
-> ReadPrec AttachInstancesResponse
-> ReadPrec [AttachInstancesResponse]
-> Read AttachInstancesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AttachInstancesResponse]
$creadListPrec :: ReadPrec [AttachInstancesResponse]
readPrec :: ReadPrec AttachInstancesResponse
$creadPrec :: ReadPrec AttachInstancesResponse
readList :: ReadS [AttachInstancesResponse]
$creadList :: ReadS [AttachInstancesResponse]
readsPrec :: Int -> ReadS AttachInstancesResponse
$creadsPrec :: Int -> ReadS AttachInstancesResponse
Prelude.Read, Int -> AttachInstancesResponse -> ShowS
[AttachInstancesResponse] -> ShowS
AttachInstancesResponse -> String
(Int -> AttachInstancesResponse -> ShowS)
-> (AttachInstancesResponse -> String)
-> ([AttachInstancesResponse] -> ShowS)
-> Show AttachInstancesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AttachInstancesResponse] -> ShowS
$cshowList :: [AttachInstancesResponse] -> ShowS
show :: AttachInstancesResponse -> String
$cshow :: AttachInstancesResponse -> String
showsPrec :: Int -> AttachInstancesResponse -> ShowS
$cshowsPrec :: Int -> AttachInstancesResponse -> ShowS
Prelude.Show, (forall x.
AttachInstancesResponse -> Rep AttachInstancesResponse x)
-> (forall x.
Rep AttachInstancesResponse x -> AttachInstancesResponse)
-> Generic AttachInstancesResponse
forall x. Rep AttachInstancesResponse x -> AttachInstancesResponse
forall x. AttachInstancesResponse -> Rep AttachInstancesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AttachInstancesResponse x -> AttachInstancesResponse
$cfrom :: forall x. AttachInstancesResponse -> Rep AttachInstancesResponse x
Prelude.Generic)
newAttachInstancesResponse ::
AttachInstancesResponse
newAttachInstancesResponse :: AttachInstancesResponse
newAttachInstancesResponse = AttachInstancesResponse
AttachInstancesResponse'
instance Prelude.NFData AttachInstancesResponse