amazonka-evidently-2.0: Amazon CloudWatch Evidently 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.Evidently.ListFeatures

Description

Returns configuration details about all the features in the specified project.

This operation returns paginated results.

Synopsis

Creating a Request

data ListFeatures Source #

See: newListFeatures smart constructor.

Constructors

ListFeatures' 

Fields

  • maxResults :: Maybe Natural

    The maximum number of results to include in the response.

  • nextToken :: Maybe Text

    The token to use when requesting the next set of results. You received this token from a previous ListFeatures operation.

  • project :: Text

    The name or ARN of the project to return the feature list from.

Instances

Instances details
ToHeaders ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

ToPath ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

ToQuery ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

AWSPager ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

AWSRequest ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Associated Types

type AWSResponse ListFeatures #

Generic ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Associated Types

type Rep ListFeatures :: Type -> Type #

Read ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Show ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

NFData ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Methods

rnf :: ListFeatures -> () #

Eq ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Hashable ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

type AWSResponse ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

type Rep ListFeatures Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

type Rep ListFeatures = D1 ('MetaData "ListFeatures" "Amazonka.Evidently.ListFeatures" "amazonka-evidently-2.0-Es2fJk98R0DAUPYaVkZSYC" 'False) (C1 ('MetaCons "ListFeatures'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "project") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListFeatures Source #

Create a value of ListFeatures 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:ListFeatures', listFeatures_maxResults - The maximum number of results to include in the response.

ListFeatures, listFeatures_nextToken - The token to use when requesting the next set of results. You received this token from a previous ListFeatures operation.

ListFeatures, listFeatures_project - The name or ARN of the project to return the feature list from.

Request Lenses

listFeatures_maxResults :: Lens' ListFeatures (Maybe Natural) Source #

The maximum number of results to include in the response.

listFeatures_nextToken :: Lens' ListFeatures (Maybe Text) Source #

The token to use when requesting the next set of results. You received this token from a previous ListFeatures operation.

listFeatures_project :: Lens' ListFeatures Text Source #

The name or ARN of the project to return the feature list from.

Destructuring the Response

data ListFeaturesResponse Source #

See: newListFeaturesResponse smart constructor.

Constructors

ListFeaturesResponse' 

Fields

  • features :: Maybe [FeatureSummary]

    An array of structures that contain the configuration details of the features in the specified project.

  • nextToken :: Maybe Text

    The token to use in a subsequent ListFeatures operation to return the next set of results.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListFeaturesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Associated Types

type Rep ListFeaturesResponse :: Type -> Type #

Read ListFeaturesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Show ListFeaturesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

NFData ListFeaturesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

Methods

rnf :: ListFeaturesResponse -> () #

Eq ListFeaturesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

type Rep ListFeaturesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListFeatures

type Rep ListFeaturesResponse = D1 ('MetaData "ListFeaturesResponse" "Amazonka.Evidently.ListFeatures" "amazonka-evidently-2.0-Es2fJk98R0DAUPYaVkZSYC" 'False) (C1 ('MetaCons "ListFeaturesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "features") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [FeatureSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListFeaturesResponse Source #

Create a value of ListFeaturesResponse 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:features:ListFeaturesResponse', listFeaturesResponse_features - An array of structures that contain the configuration details of the features in the specified project.

ListFeatures, listFeaturesResponse_nextToken - The token to use in a subsequent ListFeatures operation to return the next set of results.

$sel:httpStatus:ListFeaturesResponse', listFeaturesResponse_httpStatus - The response's http status code.

Response Lenses

listFeaturesResponse_features :: Lens' ListFeaturesResponse (Maybe [FeatureSummary]) Source #

An array of structures that contain the configuration details of the features in the specified project.

listFeaturesResponse_nextToken :: Lens' ListFeaturesResponse (Maybe Text) Source #

The token to use in a subsequent ListFeatures operation to return the next set of results.