amazonka-devicefarm-2.0: Amazon Device Farm 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.DeviceFarm.ListVPCEConfigurations

Description

Returns information about all Amazon Virtual Private Cloud (VPC) endpoint configurations in the AWS account.

This operation returns paginated results.

Synopsis

Creating a Request

data ListVPCEConfigurations Source #

See: newListVPCEConfigurations smart constructor.

Constructors

ListVPCEConfigurations' 

Fields

  • maxResults :: Maybe Int

    An integer that specifies the maximum number of items you want to return in the API response.

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

Instances

Instances details
ToJSON ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

ToHeaders ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

ToPath ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

ToQuery ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

AWSPager ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

AWSRequest ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Associated Types

type AWSResponse ListVPCEConfigurations #

Generic ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Associated Types

type Rep ListVPCEConfigurations :: Type -> Type #

Read ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Show ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

NFData ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Methods

rnf :: ListVPCEConfigurations -> () #

Eq ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Hashable ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

type AWSResponse ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

type Rep ListVPCEConfigurations Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

type Rep ListVPCEConfigurations = D1 ('MetaData "ListVPCEConfigurations" "Amazonka.DeviceFarm.ListVPCEConfigurations" "amazonka-devicefarm-2.0-2e4KvZvQ9bT8TNjEPvmW9Q" 'False) (C1 ('MetaCons "ListVPCEConfigurations'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListVPCEConfigurations :: ListVPCEConfigurations Source #

Create a value of ListVPCEConfigurations 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:maxResults:ListVPCEConfigurations', listVPCEConfigurations_maxResults - An integer that specifies the maximum number of items you want to return in the API response.

ListVPCEConfigurations, listVPCEConfigurations_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.

Request Lenses

listVPCEConfigurations_maxResults :: Lens' ListVPCEConfigurations (Maybe Int) Source #

An integer that specifies the maximum number of items you want to return in the API response.

listVPCEConfigurations_nextToken :: Lens' ListVPCEConfigurations (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.

Destructuring the Response

data ListVPCEConfigurationsResponse Source #

See: newListVPCEConfigurationsResponse smart constructor.

Constructors

ListVPCEConfigurationsResponse' 

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.

  • vpceConfigurations :: Maybe [VPCEConfiguration]

    An array of VPCEConfiguration objects that contain information about your VPC endpoint configuration.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListVPCEConfigurationsResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Associated Types

type Rep ListVPCEConfigurationsResponse :: Type -> Type #

Read ListVPCEConfigurationsResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Show ListVPCEConfigurationsResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

NFData ListVPCEConfigurationsResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

Eq ListVPCEConfigurationsResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

type Rep ListVPCEConfigurationsResponse Source # 
Instance details

Defined in Amazonka.DeviceFarm.ListVPCEConfigurations

type Rep ListVPCEConfigurationsResponse = D1 ('MetaData "ListVPCEConfigurationsResponse" "Amazonka.DeviceFarm.ListVPCEConfigurations" "amazonka-devicefarm-2.0-2e4KvZvQ9bT8TNjEPvmW9Q" 'False) (C1 ('MetaCons "ListVPCEConfigurationsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vpceConfigurations") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VPCEConfiguration])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListVPCEConfigurationsResponse Source #

Create a value of ListVPCEConfigurationsResponse 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:

ListVPCEConfigurations, listVPCEConfigurationsResponse_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:vpceConfigurations:ListVPCEConfigurationsResponse', listVPCEConfigurationsResponse_vpceConfigurations - An array of VPCEConfiguration objects that contain information about your VPC endpoint configuration.

$sel:httpStatus:ListVPCEConfigurationsResponse', listVPCEConfigurationsResponse_httpStatus - The response's http status code.

Response Lenses

listVPCEConfigurationsResponse_nextToken :: Lens' ListVPCEConfigurationsResponse (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.

listVPCEConfigurationsResponse_vpceConfigurations :: Lens' ListVPCEConfigurationsResponse (Maybe [VPCEConfiguration]) Source #

An array of VPCEConfiguration objects that contain information about your VPC endpoint configuration.