amazonka-alexa-business-2.0: Amazon Alexa For Business SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.AlexaBusiness.SearchNetworkProfiles

Description

Searches network profiles and lists the ones that meet a set of filter and sort criteria.

Synopsis

Creating a Request

data SearchNetworkProfiles Source #

See: newSearchNetworkProfiles smart constructor.

Constructors

SearchNetworkProfiles' 

Fields

  • filters :: Maybe [Filter]

    The filters to use to list a specified set of network profiles. Valid filters are NetworkProfileName, Ssid, and SecurityType.

  • maxResults :: Maybe Natural

    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.

  • nextToken :: Maybe Text

    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.

  • sortCriteria :: Maybe [Sort]

    The sort order to use to list the specified set of network profiles. Valid sort criteria includes NetworkProfileName, Ssid, and SecurityType.

Instances

Instances details
ToJSON SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

ToHeaders SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

ToPath SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

ToQuery SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

AWSRequest SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Associated Types

type AWSResponse SearchNetworkProfiles #

Generic SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Associated Types

type Rep SearchNetworkProfiles :: Type -> Type #

Read SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Show SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

NFData SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Methods

rnf :: SearchNetworkProfiles -> () #

Eq SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Hashable SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

type AWSResponse SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

type Rep SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

type Rep SearchNetworkProfiles = D1 ('MetaData "SearchNetworkProfiles" "Amazonka.AlexaBusiness.SearchNetworkProfiles" "amazonka-alexa-business-2.0-BWvKfxFukoyBarGovAkdOS" 'False) (C1 ('MetaCons "SearchNetworkProfiles'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "filters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Filter])) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sortCriteria") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Sort])))))

newSearchNetworkProfiles :: SearchNetworkProfiles Source #

Create a value of SearchNetworkProfiles with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:filters:SearchNetworkProfiles', searchNetworkProfiles_filters - The filters to use to list a specified set of network profiles. Valid filters are NetworkProfileName, Ssid, and SecurityType.

$sel:maxResults:SearchNetworkProfiles', searchNetworkProfiles_maxResults - 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.

SearchNetworkProfiles, searchNetworkProfiles_nextToken - 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.

$sel:sortCriteria:SearchNetworkProfiles', searchNetworkProfiles_sortCriteria - The sort order to use to list the specified set of network profiles. Valid sort criteria includes NetworkProfileName, Ssid, and SecurityType.

Request Lenses

searchNetworkProfiles_filters :: Lens' SearchNetworkProfiles (Maybe [Filter]) Source #

The filters to use to list a specified set of network profiles. Valid filters are NetworkProfileName, Ssid, and SecurityType.

searchNetworkProfiles_maxResults :: Lens' SearchNetworkProfiles (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.

searchNetworkProfiles_nextToken :: Lens' SearchNetworkProfiles (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.

searchNetworkProfiles_sortCriteria :: Lens' SearchNetworkProfiles (Maybe [Sort]) Source #

The sort order to use to list the specified set of network profiles. Valid sort criteria includes NetworkProfileName, Ssid, and SecurityType.

Destructuring the Response

data SearchNetworkProfilesResponse Source #

See: newSearchNetworkProfilesResponse smart constructor.

Constructors

SearchNetworkProfilesResponse' 

Fields

  • networkProfiles :: Maybe [NetworkProfileData]

    The network profiles that meet the specified set of filter criteria, in sort order. It is a list of NetworkProfileData objects.

  • nextToken :: Maybe Text

    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.

  • totalCount :: Maybe Int

    The total number of network profiles returned.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Associated Types

type Rep SearchNetworkProfilesResponse :: Type -> Type #

Read SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Show SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

NFData SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Eq SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

type Rep SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

type Rep SearchNetworkProfilesResponse = D1 ('MetaData "SearchNetworkProfilesResponse" "Amazonka.AlexaBusiness.SearchNetworkProfiles" "amazonka-alexa-business-2.0-BWvKfxFukoyBarGovAkdOS" 'False) (C1 ('MetaCons "SearchNetworkProfilesResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "networkProfiles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [NetworkProfileData])) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "totalCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newSearchNetworkProfilesResponse Source #

Create a value of SearchNetworkProfilesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:networkProfiles:SearchNetworkProfilesResponse', searchNetworkProfilesResponse_networkProfiles - The network profiles that meet the specified set of filter criteria, in sort order. It is a list of NetworkProfileData objects.

SearchNetworkProfiles, searchNetworkProfilesResponse_nextToken - 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.

$sel:totalCount:SearchNetworkProfilesResponse', searchNetworkProfilesResponse_totalCount - The total number of network profiles returned.

$sel:httpStatus:SearchNetworkProfilesResponse', searchNetworkProfilesResponse_httpStatus - The response's http status code.

Response Lenses

searchNetworkProfilesResponse_networkProfiles :: Lens' SearchNetworkProfilesResponse (Maybe [NetworkProfileData]) Source #

The network profiles that meet the specified set of filter criteria, in sort order. It is a list of NetworkProfileData objects.

searchNetworkProfilesResponse_nextToken :: Lens' SearchNetworkProfilesResponse (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.