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

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.

  • sortCriteria :: Maybe [Sort]

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

  • 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.

  • 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.

Instances

Instances details
Eq SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Read SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Show SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Generic SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Associated Types

type Rep SearchNetworkProfiles :: Type -> Type #

NFData SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Methods

rnf :: SearchNetworkProfiles -> () #

Hashable SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

ToJSON SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

AWSRequest SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Associated Types

type AWSResponse 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

type Rep SearchNetworkProfiles Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

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

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

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: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.

$sel:nextToken: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: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.

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_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.

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_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.

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
Eq SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Read SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Show SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Generic SearchNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.AlexaBusiness.SearchNetworkProfiles

Associated Types

type Rep SearchNetworkProfilesResponse :: Type -> Type #

NFData 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" "libZSservicesZSamazonka-alexa-businessZSamazonka-alexa-business" '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.

$sel:nextToken: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.