amazonka-sagemaker-2.0: Amazon SageMaker Service 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.SageMaker.ListPipelineExecutions

Description

Gets a list of the pipeline executions.

This operation returns paginated results.

Synopsis

Creating a Request

data ListPipelineExecutions Source #

See: newListPipelineExecutions smart constructor.

Constructors

ListPipelineExecutions' 

Fields

Instances

Instances details
ToJSON ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

ToHeaders ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

ToPath ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

ToQuery ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

AWSPager ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

AWSRequest ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Associated Types

type AWSResponse ListPipelineExecutions #

Generic ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Associated Types

type Rep ListPipelineExecutions :: Type -> Type #

Read ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Show ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

NFData ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Methods

rnf :: ListPipelineExecutions -> () #

Eq ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Hashable ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

type AWSResponse ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

type Rep ListPipelineExecutions Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

type Rep ListPipelineExecutions = D1 ('MetaData "ListPipelineExecutions" "Amazonka.SageMaker.ListPipelineExecutions" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ListPipelineExecutions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "createdAfter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "createdBefore") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))) :*: ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sortBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SortPipelineExecutionsBy))) :*: (S1 ('MetaSel ('Just "sortOrder") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SortOrder)) :*: S1 ('MetaSel ('Just "pipelineName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newListPipelineExecutions Source #

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

ListPipelineExecutions, listPipelineExecutions_createdAfter - A filter that returns the pipeline executions that were created after a specified time.

ListPipelineExecutions, listPipelineExecutions_createdBefore - A filter that returns the pipeline executions that were created before a specified time.

$sel:maxResults:ListPipelineExecutions', listPipelineExecutions_maxResults - The maximum number of pipeline executions to return in the response.

ListPipelineExecutions, listPipelineExecutions_nextToken - If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

$sel:sortBy:ListPipelineExecutions', listPipelineExecutions_sortBy - The field by which to sort results. The default is CreatedTime.

$sel:sortOrder:ListPipelineExecutions', listPipelineExecutions_sortOrder - The sort order for results.

ListPipelineExecutions, listPipelineExecutions_pipelineName - The name of the pipeline.

Request Lenses

listPipelineExecutions_createdAfter :: Lens' ListPipelineExecutions (Maybe UTCTime) Source #

A filter that returns the pipeline executions that were created after a specified time.

listPipelineExecutions_createdBefore :: Lens' ListPipelineExecutions (Maybe UTCTime) Source #

A filter that returns the pipeline executions that were created before a specified time.

listPipelineExecutions_maxResults :: Lens' ListPipelineExecutions (Maybe Natural) Source #

The maximum number of pipeline executions to return in the response.

listPipelineExecutions_nextToken :: Lens' ListPipelineExecutions (Maybe Text) Source #

If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

listPipelineExecutions_sortBy :: Lens' ListPipelineExecutions (Maybe SortPipelineExecutionsBy) Source #

The field by which to sort results. The default is CreatedTime.

Destructuring the Response

data ListPipelineExecutionsResponse Source #

See: newListPipelineExecutionsResponse smart constructor.

Constructors

ListPipelineExecutionsResponse' 

Fields

  • nextToken :: Maybe Text

    If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

  • pipelineExecutionSummaries :: Maybe [PipelineExecutionSummary]

    Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListPipelineExecutionsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Associated Types

type Rep ListPipelineExecutionsResponse :: Type -> Type #

Read ListPipelineExecutionsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Show ListPipelineExecutionsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

NFData ListPipelineExecutionsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

Eq ListPipelineExecutionsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

type Rep ListPipelineExecutionsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutions

type Rep ListPipelineExecutionsResponse = D1 ('MetaData "ListPipelineExecutionsResponse" "Amazonka.SageMaker.ListPipelineExecutions" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ListPipelineExecutionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "pipelineExecutionSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PipelineExecutionSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListPipelineExecutionsResponse Source #

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

ListPipelineExecutions, listPipelineExecutionsResponse_nextToken - If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

$sel:pipelineExecutionSummaries:ListPipelineExecutionsResponse', listPipelineExecutionsResponse_pipelineExecutionSummaries - Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.

$sel:httpStatus:ListPipelineExecutionsResponse', listPipelineExecutionsResponse_httpStatus - The response's http status code.

Response Lenses

listPipelineExecutionsResponse_nextToken :: Lens' ListPipelineExecutionsResponse (Maybe Text) Source #

If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

listPipelineExecutionsResponse_pipelineExecutionSummaries :: Lens' ListPipelineExecutionsResponse (Maybe [PipelineExecutionSummary]) Source #

Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.