libZSservicesZSamazonka-devicefarmZSamazonka-devicefarm
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.DeviceFarm.ListNetworkProfiles

Description

Returns the list of available network profiles.

This operation returns paginated results.

Synopsis

Creating a Request

data ListNetworkProfiles Source #

See: newListNetworkProfiles smart constructor.

Constructors

ListNetworkProfiles' 

Fields

  • nextToken :: Maybe Text

    An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

  • type' :: Maybe NetworkProfileType

    The type of network profile to return information about. Valid values are listed here.

  • arn :: Text

    The Amazon Resource Name (ARN) of the project for which you want to list network profiles.

Instances

Instances details
Eq ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Read ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Show ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Generic ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Associated Types

type Rep ListNetworkProfiles :: Type -> Type #

NFData ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Methods

rnf :: ListNetworkProfiles -> () #

Hashable ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

ToJSON ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

AWSPager ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

AWSRequest ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Associated Types

type AWSResponse ListNetworkProfiles #

ToHeaders ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

ToPath ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

ToQuery ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

type Rep ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

type Rep ListNetworkProfiles = D1 ('MetaData "ListNetworkProfiles" "Amazonka.DeviceFarm.ListNetworkProfiles" "libZSservicesZSamazonka-devicefarmZSamazonka-devicefarm" 'False) (C1 ('MetaCons "ListNetworkProfiles'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe NetworkProfileType)) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListNetworkProfiles Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

newListNetworkProfiles Source #

Create a value of ListNetworkProfiles 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:nextToken:ListNetworkProfiles', listNetworkProfiles_nextToken - An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

$sel:type':ListNetworkProfiles', listNetworkProfiles_type - The type of network profile to return information about. Valid values are listed here.

$sel:arn:ListNetworkProfiles', listNetworkProfiles_arn - The Amazon Resource Name (ARN) of the project for which you want to list network profiles.

Request Lenses

listNetworkProfiles_nextToken :: Lens' ListNetworkProfiles (Maybe Text) Source #

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

listNetworkProfiles_type :: Lens' ListNetworkProfiles (Maybe NetworkProfileType) Source #

The type of network profile to return information about. Valid values are listed here.

listNetworkProfiles_arn :: Lens' ListNetworkProfiles Text Source #

The Amazon Resource Name (ARN) of the project for which you want to list network profiles.

Destructuring the Response

data ListNetworkProfilesResponse Source #

See: newListNetworkProfilesResponse smart constructor.

Constructors

ListNetworkProfilesResponse' 

Fields

Instances

Instances details
Eq ListNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Read ListNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Show ListNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Generic ListNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

Associated Types

type Rep ListNetworkProfilesResponse :: Type -> Type #

NFData ListNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

type Rep ListNetworkProfilesResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListNetworkProfiles

type Rep ListNetworkProfilesResponse = D1 ('MetaData "ListNetworkProfilesResponse" "Amazonka.DeviceFarm.ListNetworkProfiles" "libZSservicesZSamazonka-devicefarmZSamazonka-devicefarm" 'False) (C1 ('MetaCons "ListNetworkProfilesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "networkProfiles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [NetworkProfile])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListNetworkProfilesResponse Source #

Create a value of ListNetworkProfilesResponse 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:ListNetworkProfilesResponse', listNetworkProfilesResponse_networkProfiles - A list of the available network profiles.

$sel:nextToken:ListNetworkProfiles', listNetworkProfilesResponse_nextToken - An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

$sel:httpStatus:ListNetworkProfilesResponse', listNetworkProfilesResponse_httpStatus - The response's http status code.

Response Lenses

listNetworkProfilesResponse_nextToken :: Lens' ListNetworkProfilesResponse (Maybe Text) Source #

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.