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

Description

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

This operation returns paginated results.

Synopsis

Creating a Request

data ListLaunches Source #

See: newListLaunches smart constructor.

Constructors

ListLaunches' 

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 ListLaunches operation.

  • status :: Maybe LaunchStatus

    Use this optional parameter to limit the returned results to only the launches with the status that you specify here.

  • project :: Text

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

Instances

Instances details
ToHeaders ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

ToPath ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

ToQuery ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

AWSPager ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

AWSRequest ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Associated Types

type AWSResponse ListLaunches #

Generic ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Associated Types

type Rep ListLaunches :: Type -> Type #

Read ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Show ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

NFData ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Methods

rnf :: ListLaunches -> () #

Eq ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Hashable ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

type AWSResponse ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

type Rep ListLaunches Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

type Rep ListLaunches = D1 ('MetaData "ListLaunches" "Amazonka.Evidently.ListLaunches" "amazonka-evidently-2.0-Es2fJk98R0DAUPYaVkZSYC" 'False) (C1 ('MetaCons "ListLaunches'" '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 "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LaunchStatus)) :*: S1 ('MetaSel ('Just "project") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListLaunches Source #

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

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

ListLaunches, listLaunches_status - Use this optional parameter to limit the returned results to only the launches with the status that you specify here.

ListLaunches, listLaunches_project - The name or ARN of the project to return the launch list from.

Request Lenses

listLaunches_maxResults :: Lens' ListLaunches (Maybe Natural) Source #

The maximum number of results to include in the response.

listLaunches_nextToken :: Lens' ListLaunches (Maybe Text) Source #

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

listLaunches_status :: Lens' ListLaunches (Maybe LaunchStatus) Source #

Use this optional parameter to limit the returned results to only the launches with the status that you specify here.

listLaunches_project :: Lens' ListLaunches Text Source #

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

Destructuring the Response

data ListLaunchesResponse Source #

See: newListLaunchesResponse smart constructor.

Constructors

ListLaunchesResponse' 

Fields

  • launches :: Maybe [Launch]

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

  • nextToken :: Maybe Text

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

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListLaunchesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Associated Types

type Rep ListLaunchesResponse :: Type -> Type #

Read ListLaunchesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Show ListLaunchesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

NFData ListLaunchesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

Methods

rnf :: ListLaunchesResponse -> () #

Eq ListLaunchesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

type Rep ListLaunchesResponse Source # 
Instance details

Defined in Amazonka.Evidently.ListLaunches

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

newListLaunchesResponse Source #

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

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

$sel:httpStatus:ListLaunchesResponse', listLaunchesResponse_httpStatus - The response's http status code.

Response Lenses

listLaunchesResponse_launches :: Lens' ListLaunchesResponse (Maybe [Launch]) Source #

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

listLaunchesResponse_nextToken :: Lens' ListLaunchesResponse (Maybe Text) Source #

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