{-# 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.SSMContacts.ListContacts
(
ListContacts (..),
newListContacts,
listContacts_aliasPrefix,
listContacts_nextToken,
listContacts_type,
listContacts_maxResults,
ListContactsResponse (..),
newListContactsResponse,
listContactsResponse_nextToken,
listContactsResponse_contacts,
listContactsResponse_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.SSMContacts.Types
data ListContacts = ListContacts'
{
ListContacts -> Maybe Text
aliasPrefix :: Prelude.Maybe Prelude.Text,
ListContacts -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListContacts -> Maybe ContactType
type' :: Prelude.Maybe ContactType,
ListContacts -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural
}
deriving (ListContacts -> ListContacts -> Bool
(ListContacts -> ListContacts -> Bool)
-> (ListContacts -> ListContacts -> Bool) -> Eq ListContacts
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListContacts -> ListContacts -> Bool
$c/= :: ListContacts -> ListContacts -> Bool
== :: ListContacts -> ListContacts -> Bool
$c== :: ListContacts -> ListContacts -> Bool
Prelude.Eq, ReadPrec [ListContacts]
ReadPrec ListContacts
Int -> ReadS ListContacts
ReadS [ListContacts]
(Int -> ReadS ListContacts)
-> ReadS [ListContacts]
-> ReadPrec ListContacts
-> ReadPrec [ListContacts]
-> Read ListContacts
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListContacts]
$creadListPrec :: ReadPrec [ListContacts]
readPrec :: ReadPrec ListContacts
$creadPrec :: ReadPrec ListContacts
readList :: ReadS [ListContacts]
$creadList :: ReadS [ListContacts]
readsPrec :: Int -> ReadS ListContacts
$creadsPrec :: Int -> ReadS ListContacts
Prelude.Read, Int -> ListContacts -> ShowS
[ListContacts] -> ShowS
ListContacts -> String
(Int -> ListContacts -> ShowS)
-> (ListContacts -> String)
-> ([ListContacts] -> ShowS)
-> Show ListContacts
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListContacts] -> ShowS
$cshowList :: [ListContacts] -> ShowS
show :: ListContacts -> String
$cshow :: ListContacts -> String
showsPrec :: Int -> ListContacts -> ShowS
$cshowsPrec :: Int -> ListContacts -> ShowS
Prelude.Show, (forall x. ListContacts -> Rep ListContacts x)
-> (forall x. Rep ListContacts x -> ListContacts)
-> Generic ListContacts
forall x. Rep ListContacts x -> ListContacts
forall x. ListContacts -> Rep ListContacts x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListContacts x -> ListContacts
$cfrom :: forall x. ListContacts -> Rep ListContacts x
Prelude.Generic)
newListContacts ::
ListContacts
newListContacts :: ListContacts
newListContacts =
ListContacts' :: Maybe Text
-> Maybe Text -> Maybe ContactType -> Maybe Natural -> ListContacts
ListContacts'
{ $sel:aliasPrefix:ListContacts' :: Maybe Text
aliasPrefix = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:nextToken:ListContacts' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:type':ListContacts' :: Maybe ContactType
type' = Maybe ContactType
forall a. Maybe a
Prelude.Nothing,
$sel:maxResults:ListContacts' :: Maybe Natural
maxResults = Maybe Natural
forall a. Maybe a
Prelude.Nothing
}
listContacts_aliasPrefix :: Lens.Lens' ListContacts (Prelude.Maybe Prelude.Text)
listContacts_aliasPrefix :: (Maybe Text -> f (Maybe Text)) -> ListContacts -> f ListContacts
listContacts_aliasPrefix = (ListContacts -> Maybe Text)
-> (ListContacts -> Maybe Text -> ListContacts)
-> Lens ListContacts ListContacts (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContacts' {Maybe Text
aliasPrefix :: Maybe Text
$sel:aliasPrefix:ListContacts' :: ListContacts -> Maybe Text
aliasPrefix} -> Maybe Text
aliasPrefix) (\s :: ListContacts
s@ListContacts' {} Maybe Text
a -> ListContacts
s {$sel:aliasPrefix:ListContacts' :: Maybe Text
aliasPrefix = Maybe Text
a} :: ListContacts)
listContacts_nextToken :: Lens.Lens' ListContacts (Prelude.Maybe Prelude.Text)
listContacts_nextToken :: (Maybe Text -> f (Maybe Text)) -> ListContacts -> f ListContacts
listContacts_nextToken = (ListContacts -> Maybe Text)
-> (ListContacts -> Maybe Text -> ListContacts)
-> Lens ListContacts ListContacts (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContacts' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListContacts' :: ListContacts -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListContacts
s@ListContacts' {} Maybe Text
a -> ListContacts
s {$sel:nextToken:ListContacts' :: Maybe Text
nextToken = Maybe Text
a} :: ListContacts)
listContacts_type :: Lens.Lens' ListContacts (Prelude.Maybe ContactType)
listContacts_type :: (Maybe ContactType -> f (Maybe ContactType))
-> ListContacts -> f ListContacts
listContacts_type = (ListContacts -> Maybe ContactType)
-> (ListContacts -> Maybe ContactType -> ListContacts)
-> Lens
ListContacts ListContacts (Maybe ContactType) (Maybe ContactType)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContacts' {Maybe ContactType
type' :: Maybe ContactType
$sel:type':ListContacts' :: ListContacts -> Maybe ContactType
type'} -> Maybe ContactType
type') (\s :: ListContacts
s@ListContacts' {} Maybe ContactType
a -> ListContacts
s {$sel:type':ListContacts' :: Maybe ContactType
type' = Maybe ContactType
a} :: ListContacts)
listContacts_maxResults :: Lens.Lens' ListContacts (Prelude.Maybe Prelude.Natural)
listContacts_maxResults :: (Maybe Natural -> f (Maybe Natural))
-> ListContacts -> f ListContacts
listContacts_maxResults = (ListContacts -> Maybe Natural)
-> (ListContacts -> Maybe Natural -> ListContacts)
-> Lens ListContacts ListContacts (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContacts' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListContacts' :: ListContacts -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListContacts
s@ListContacts' {} Maybe Natural
a -> ListContacts
s {$sel:maxResults:ListContacts' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListContacts)
instance Core.AWSPager ListContacts where
page :: ListContacts -> AWSResponse ListContacts -> Maybe ListContacts
page ListContacts
rq AWSResponse ListContacts
rs
| Maybe Text -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
( AWSResponse ListContacts
ListContactsResponse
rs
ListContactsResponse
-> Getting (First Text) ListContactsResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListContactsResponse -> Const (First Text) ListContactsResponse
Lens' ListContactsResponse (Maybe Text)
listContactsResponse_nextToken ((Maybe Text -> Const (First Text) (Maybe Text))
-> ListContactsResponse -> Const (First Text) ListContactsResponse)
-> ((Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListContactsResponse Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text)
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
) =
Maybe ListContacts
forall a. Maybe a
Prelude.Nothing
| Maybe [Contact] -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
( AWSResponse ListContacts
ListContactsResponse
rs
ListContactsResponse
-> Getting (First [Contact]) ListContactsResponse [Contact]
-> Maybe [Contact]
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe [Contact] -> Const (First [Contact]) (Maybe [Contact]))
-> ListContactsResponse
-> Const (First [Contact]) ListContactsResponse
Lens' ListContactsResponse (Maybe [Contact])
listContactsResponse_contacts ((Maybe [Contact] -> Const (First [Contact]) (Maybe [Contact]))
-> ListContactsResponse
-> Const (First [Contact]) ListContactsResponse)
-> (([Contact] -> Const (First [Contact]) [Contact])
-> Maybe [Contact] -> Const (First [Contact]) (Maybe [Contact]))
-> Getting (First [Contact]) ListContactsResponse [Contact]
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Contact] -> Const (First [Contact]) [Contact])
-> Maybe [Contact] -> Const (First [Contact]) (Maybe [Contact])
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
) =
Maybe ListContacts
forall a. Maybe a
Prelude.Nothing
| Bool
Prelude.otherwise =
ListContacts -> Maybe ListContacts
forall a. a -> Maybe a
Prelude.Just (ListContacts -> Maybe ListContacts)
-> ListContacts -> Maybe ListContacts
forall a b. (a -> b) -> a -> b
Prelude.$
ListContacts
rq
ListContacts -> (ListContacts -> ListContacts) -> ListContacts
forall a b. a -> (a -> b) -> b
Prelude.& (Maybe Text -> Identity (Maybe Text))
-> ListContacts -> Identity ListContacts
Lens ListContacts ListContacts (Maybe Text) (Maybe Text)
listContacts_nextToken
((Maybe Text -> Identity (Maybe Text))
-> ListContacts -> Identity ListContacts)
-> Maybe Text -> ListContacts -> ListContacts
forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListContacts
ListContactsResponse
rs
ListContactsResponse
-> Getting (First Text) ListContactsResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListContactsResponse -> Const (First Text) ListContactsResponse
Lens' ListContactsResponse (Maybe Text)
listContactsResponse_nextToken ((Maybe Text -> Const (First Text) (Maybe Text))
-> ListContactsResponse -> Const (First Text) ListContactsResponse)
-> ((Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListContactsResponse Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text)
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
instance Core.AWSRequest ListContacts where
type AWSResponse ListContacts = ListContactsResponse
request :: ListContacts -> Request ListContacts
request = Service -> ListContacts -> Request ListContacts
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy ListContacts
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListContacts)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse ListContacts))
-> Logger
-> Service
-> Proxy ListContacts
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListContacts)))
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 [Contact] -> Int -> ListContactsResponse
ListContactsResponse'
(Maybe Text -> Maybe [Contact] -> Int -> ListContactsResponse)
-> Either String (Maybe Text)
-> Either String (Maybe [Contact] -> Int -> ListContactsResponse)
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
"NextToken")
Either String (Maybe [Contact] -> Int -> ListContactsResponse)
-> Either String (Maybe [Contact])
-> Either String (Int -> ListContactsResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe (Maybe [Contact]))
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"Contacts" Either String (Maybe (Maybe [Contact]))
-> Maybe [Contact] -> Either String (Maybe [Contact])
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ Maybe [Contact]
forall a. Monoid a => a
Prelude.mempty)
Either String (Int -> ListContactsResponse)
-> Either String Int -> Either String ListContactsResponse
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 ListContacts
instance Prelude.NFData ListContacts
instance Core.ToHeaders ListContacts where
toHeaders :: ListContacts -> ResponseHeaders
toHeaders =
ResponseHeaders -> ListContacts -> 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
"SSMContacts.ListContacts" :: 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 ListContacts where
toJSON :: ListContacts -> Value
toJSON ListContacts' {Maybe Natural
Maybe Text
Maybe ContactType
maxResults :: Maybe Natural
type' :: Maybe ContactType
nextToken :: Maybe Text
aliasPrefix :: Maybe Text
$sel:maxResults:ListContacts' :: ListContacts -> Maybe Natural
$sel:type':ListContacts' :: ListContacts -> Maybe ContactType
$sel:nextToken:ListContacts' :: ListContacts -> Maybe Text
$sel:aliasPrefix:ListContacts' :: ListContacts -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"AliasPrefix" 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
aliasPrefix,
(Text
"NextToken" 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
nextToken,
(Text
"Type" Text -> ContactType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (ContactType -> Pair) -> Maybe ContactType -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ContactType
type',
(Text
"MaxResults" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
maxResults
]
)
instance Core.ToPath ListContacts where
toPath :: ListContacts -> ByteString
toPath = ByteString -> ListContacts -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery ListContacts where
toQuery :: ListContacts -> QueryString
toQuery = QueryString -> ListContacts -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data ListContactsResponse = ListContactsResponse'
{
ListContactsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListContactsResponse -> Maybe [Contact]
contacts :: Prelude.Maybe [Contact],
ListContactsResponse -> Int
httpStatus :: Prelude.Int
}
deriving (ListContactsResponse -> ListContactsResponse -> Bool
(ListContactsResponse -> ListContactsResponse -> Bool)
-> (ListContactsResponse -> ListContactsResponse -> Bool)
-> Eq ListContactsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListContactsResponse -> ListContactsResponse -> Bool
$c/= :: ListContactsResponse -> ListContactsResponse -> Bool
== :: ListContactsResponse -> ListContactsResponse -> Bool
$c== :: ListContactsResponse -> ListContactsResponse -> Bool
Prelude.Eq, ReadPrec [ListContactsResponse]
ReadPrec ListContactsResponse
Int -> ReadS ListContactsResponse
ReadS [ListContactsResponse]
(Int -> ReadS ListContactsResponse)
-> ReadS [ListContactsResponse]
-> ReadPrec ListContactsResponse
-> ReadPrec [ListContactsResponse]
-> Read ListContactsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListContactsResponse]
$creadListPrec :: ReadPrec [ListContactsResponse]
readPrec :: ReadPrec ListContactsResponse
$creadPrec :: ReadPrec ListContactsResponse
readList :: ReadS [ListContactsResponse]
$creadList :: ReadS [ListContactsResponse]
readsPrec :: Int -> ReadS ListContactsResponse
$creadsPrec :: Int -> ReadS ListContactsResponse
Prelude.Read, Int -> ListContactsResponse -> ShowS
[ListContactsResponse] -> ShowS
ListContactsResponse -> String
(Int -> ListContactsResponse -> ShowS)
-> (ListContactsResponse -> String)
-> ([ListContactsResponse] -> ShowS)
-> Show ListContactsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListContactsResponse] -> ShowS
$cshowList :: [ListContactsResponse] -> ShowS
show :: ListContactsResponse -> String
$cshow :: ListContactsResponse -> String
showsPrec :: Int -> ListContactsResponse -> ShowS
$cshowsPrec :: Int -> ListContactsResponse -> ShowS
Prelude.Show, (forall x. ListContactsResponse -> Rep ListContactsResponse x)
-> (forall x. Rep ListContactsResponse x -> ListContactsResponse)
-> Generic ListContactsResponse
forall x. Rep ListContactsResponse x -> ListContactsResponse
forall x. ListContactsResponse -> Rep ListContactsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListContactsResponse x -> ListContactsResponse
$cfrom :: forall x. ListContactsResponse -> Rep ListContactsResponse x
Prelude.Generic)
newListContactsResponse ::
Prelude.Int ->
ListContactsResponse
newListContactsResponse :: Int -> ListContactsResponse
newListContactsResponse Int
pHttpStatus_ =
ListContactsResponse' :: Maybe Text -> Maybe [Contact] -> Int -> ListContactsResponse
ListContactsResponse'
{ $sel:nextToken:ListContactsResponse' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:contacts:ListContactsResponse' :: Maybe [Contact]
contacts = Maybe [Contact]
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:ListContactsResponse' :: Int
httpStatus = Int
pHttpStatus_
}
listContactsResponse_nextToken :: Lens.Lens' ListContactsResponse (Prelude.Maybe Prelude.Text)
listContactsResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListContactsResponse -> f ListContactsResponse
listContactsResponse_nextToken = (ListContactsResponse -> Maybe Text)
-> (ListContactsResponse -> Maybe Text -> ListContactsResponse)
-> Lens' ListContactsResponse (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContactsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListContactsResponse' :: ListContactsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListContactsResponse
s@ListContactsResponse' {} Maybe Text
a -> ListContactsResponse
s {$sel:nextToken:ListContactsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListContactsResponse)
listContactsResponse_contacts :: Lens.Lens' ListContactsResponse (Prelude.Maybe [Contact])
listContactsResponse_contacts :: (Maybe [Contact] -> f (Maybe [Contact]))
-> ListContactsResponse -> f ListContactsResponse
listContactsResponse_contacts = (ListContactsResponse -> Maybe [Contact])
-> (ListContactsResponse
-> Maybe [Contact] -> ListContactsResponse)
-> Lens' ListContactsResponse (Maybe [Contact])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContactsResponse' {Maybe [Contact]
contacts :: Maybe [Contact]
$sel:contacts:ListContactsResponse' :: ListContactsResponse -> Maybe [Contact]
contacts} -> Maybe [Contact]
contacts) (\s :: ListContactsResponse
s@ListContactsResponse' {} Maybe [Contact]
a -> ListContactsResponse
s {$sel:contacts:ListContactsResponse' :: Maybe [Contact]
contacts = Maybe [Contact]
a} :: ListContactsResponse) ((Maybe [Contact] -> f (Maybe [Contact]))
-> ListContactsResponse -> f ListContactsResponse)
-> ((Maybe [Contact] -> f (Maybe [Contact]))
-> Maybe [Contact] -> f (Maybe [Contact]))
-> (Maybe [Contact] -> f (Maybe [Contact]))
-> ListContactsResponse
-> f ListContactsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Contact] [Contact] [Contact] [Contact]
-> Iso
(Maybe [Contact])
(Maybe [Contact])
(Maybe [Contact])
(Maybe [Contact])
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 [Contact] [Contact] [Contact] [Contact]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
listContactsResponse_httpStatus :: Lens.Lens' ListContactsResponse Prelude.Int
listContactsResponse_httpStatus :: (Int -> f Int) -> ListContactsResponse -> f ListContactsResponse
listContactsResponse_httpStatus = (ListContactsResponse -> Int)
-> (ListContactsResponse -> Int -> ListContactsResponse)
-> Lens ListContactsResponse ListContactsResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListContactsResponse' {Int
httpStatus :: Int
$sel:httpStatus:ListContactsResponse' :: ListContactsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: ListContactsResponse
s@ListContactsResponse' {} Int
a -> ListContactsResponse
s {$sel:httpStatus:ListContactsResponse' :: Int
httpStatus = Int
a} :: ListContactsResponse)
instance Prelude.NFData ListContactsResponse