amazonka-alexa-business-1.6.1: Amazon Alexa For Business SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.AlexaBusiness.SearchSkillGroups

Contents

Description

Searches skill groups and lists the ones that meet a set of filter and sort criteria.

This operation returns paginated results.

Synopsis

Creating a Request

searchSkillGroups :: SearchSkillGroups Source #

Creates a value of SearchSkillGroups with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • ssgFilters - The filters to use to list a specified set of skill groups. The supported filter key is SkillGroupName.
  • ssgSortCriteria - The sort order to use in listing the specified set of skill groups. The supported sort key is SkillGroupName.
  • ssgNextToken - An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults . Required.
  • ssgMaxResults - The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

data SearchSkillGroups Source #

See: searchSkillGroups smart constructor.

Instances
Eq SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Data SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SearchSkillGroups -> c SearchSkillGroups #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SearchSkillGroups #

toConstr :: SearchSkillGroups -> Constr #

dataTypeOf :: SearchSkillGroups -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SearchSkillGroups) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SearchSkillGroups) #

gmapT :: (forall b. Data b => b -> b) -> SearchSkillGroups -> SearchSkillGroups #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SearchSkillGroups -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SearchSkillGroups -> r #

gmapQ :: (forall d. Data d => d -> u) -> SearchSkillGroups -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SearchSkillGroups -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SearchSkillGroups -> m SearchSkillGroups #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SearchSkillGroups -> m SearchSkillGroups #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SearchSkillGroups -> m SearchSkillGroups #

Read SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Show SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Generic SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Associated Types

type Rep SearchSkillGroups :: Type -> Type #

Hashable SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

ToJSON SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

AWSPager SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

AWSRequest SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Associated Types

type Rs SearchSkillGroups :: Type #

ToHeaders SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

ToPath SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

ToQuery SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

NFData SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Methods

rnf :: SearchSkillGroups -> () #

type Rep SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

type Rep SearchSkillGroups = D1 (MetaData "SearchSkillGroups" "Network.AWS.AlexaBusiness.SearchSkillGroups" "amazonka-alexa-business-1.6.1-FQuG4RoJ6vRJhvV2Vb1OnQ" False) (C1 (MetaCons "SearchSkillGroups'" PrefixI True) ((S1 (MetaSel (Just "_ssgFilters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Filter])) :*: S1 (MetaSel (Just "_ssgSortCriteria") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Sort]))) :*: (S1 (MetaSel (Just "_ssgNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_ssgMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat)))))
type Rs SearchSkillGroups Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Request Lenses

ssgFilters :: Lens' SearchSkillGroups [Filter] Source #

The filters to use to list a specified set of skill groups. The supported filter key is SkillGroupName.

ssgSortCriteria :: Lens' SearchSkillGroups [Sort] Source #

The sort order to use in listing the specified set of skill groups. The supported sort key is SkillGroupName.

ssgNextToken :: Lens' SearchSkillGroups (Maybe Text) Source #

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults . Required.

ssgMaxResults :: Lens' SearchSkillGroups (Maybe Natural) Source #

The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

Destructuring the Response

searchSkillGroupsResponse Source #

Creates a value of SearchSkillGroupsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data SearchSkillGroupsResponse Source #

See: searchSkillGroupsResponse smart constructor.

Instances
Eq SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Data SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SearchSkillGroupsResponse -> c SearchSkillGroupsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SearchSkillGroupsResponse #

toConstr :: SearchSkillGroupsResponse -> Constr #

dataTypeOf :: SearchSkillGroupsResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c SearchSkillGroupsResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SearchSkillGroupsResponse) #

gmapT :: (forall b. Data b => b -> b) -> SearchSkillGroupsResponse -> SearchSkillGroupsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SearchSkillGroupsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SearchSkillGroupsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> SearchSkillGroupsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SearchSkillGroupsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SearchSkillGroupsResponse -> m SearchSkillGroupsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SearchSkillGroupsResponse -> m SearchSkillGroupsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SearchSkillGroupsResponse -> m SearchSkillGroupsResponse #

Read SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Show SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Generic SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

Associated Types

type Rep SearchSkillGroupsResponse :: Type -> Type #

NFData SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

type Rep SearchSkillGroupsResponse Source # 
Instance details

Defined in Network.AWS.AlexaBusiness.SearchSkillGroups

type Rep SearchSkillGroupsResponse = D1 (MetaData "SearchSkillGroupsResponse" "Network.AWS.AlexaBusiness.SearchSkillGroups" "amazonka-alexa-business-1.6.1-FQuG4RoJ6vRJhvV2Vb1OnQ" False) (C1 (MetaCons "SearchSkillGroupsResponse'" PrefixI True) ((S1 (MetaSel (Just "_ssgrsNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_ssgrsSkillGroups") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [SkillGroupData]))) :*: (S1 (MetaSel (Just "_ssgrsTotalCount") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Int)) :*: S1 (MetaSel (Just "_ssgrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

ssgrsNextToken :: Lens' SearchSkillGroupsResponse (Maybe Text) Source #

The token returned to indicate that there is more data available.

ssgrsSkillGroups :: Lens' SearchSkillGroupsResponse [SkillGroupData] Source #

The skill groups that meet the filter criteria, in sort order.

ssgrsTotalCount :: Lens' SearchSkillGroupsResponse (Maybe Int) Source #

The total number of skill groups returned.