libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
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.SageMaker.ListPipelineExecutionSteps

Description

Gets a list of PipeLineExecutionStep objects.

This operation returns paginated results.

Synopsis

Creating a Request

data ListPipelineExecutionSteps Source #

See: newListPipelineExecutionSteps smart constructor.

Constructors

ListPipelineExecutionSteps' 

Fields

  • pipelineExecutionArn :: Maybe Text

    The Amazon Resource Name (ARN) of the pipeline execution.

  • nextToken :: Maybe Text

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

  • sortOrder :: Maybe SortOrder

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

  • maxResults :: Maybe Natural

    The maximum number of pipeline execution steps to return in the response.

Instances

Instances details
Eq ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Read ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Show ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Generic ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Associated Types

type Rep ListPipelineExecutionSteps :: Type -> Type #

NFData ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Hashable ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

ToJSON ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

AWSPager ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

AWSRequest ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

ToHeaders ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

ToPath ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

ToQuery ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

type Rep ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

type Rep ListPipelineExecutionSteps = D1 ('MetaData "ListPipelineExecutionSteps" "Amazonka.SageMaker.ListPipelineExecutionSteps" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "ListPipelineExecutionSteps'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "pipelineExecutionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "sortOrder") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SortOrder)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse ListPipelineExecutionSteps Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

newListPipelineExecutionSteps :: ListPipelineExecutionSteps Source #

Create a value of ListPipelineExecutionSteps 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:pipelineExecutionArn:ListPipelineExecutionSteps', listPipelineExecutionSteps_pipelineExecutionArn - The Amazon Resource Name (ARN) of the pipeline execution.

$sel:nextToken:ListPipelineExecutionSteps', listPipelineExecutionSteps_nextToken - If the result of the previous ListPipelineExecutionSteps request was truncated, the response includes a NextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.

$sel:sortOrder:ListPipelineExecutionSteps', listPipelineExecutionSteps_sortOrder - The field by which to sort results. The default is CreatedTime.

$sel:maxResults:ListPipelineExecutionSteps', listPipelineExecutionSteps_maxResults - The maximum number of pipeline execution steps to return in the response.

Request Lenses

listPipelineExecutionSteps_pipelineExecutionArn :: Lens' ListPipelineExecutionSteps (Maybe Text) Source #

The Amazon Resource Name (ARN) of the pipeline execution.

listPipelineExecutionSteps_nextToken :: Lens' ListPipelineExecutionSteps (Maybe Text) Source #

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

listPipelineExecutionSteps_sortOrder :: Lens' ListPipelineExecutionSteps (Maybe SortOrder) Source #

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

listPipelineExecutionSteps_maxResults :: Lens' ListPipelineExecutionSteps (Maybe Natural) Source #

The maximum number of pipeline execution steps to return in the response.

Destructuring the Response

data ListPipelineExecutionStepsResponse Source #

Constructors

ListPipelineExecutionStepsResponse' 

Fields

  • pipelineExecutionSteps :: Maybe [PipelineExecutionStep]

    A list of PipeLineExecutionStep objects. Each PipeLineExecutionStep consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.

  • nextToken :: Maybe Text

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

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ListPipelineExecutionStepsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Read ListPipelineExecutionStepsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Show ListPipelineExecutionStepsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Generic ListPipelineExecutionStepsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

Associated Types

type Rep ListPipelineExecutionStepsResponse :: Type -> Type #

NFData ListPipelineExecutionStepsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

type Rep ListPipelineExecutionStepsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListPipelineExecutionSteps

type Rep ListPipelineExecutionStepsResponse = D1 ('MetaData "ListPipelineExecutionStepsResponse" "Amazonka.SageMaker.ListPipelineExecutionSteps" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "ListPipelineExecutionStepsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "pipelineExecutionSteps") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PipelineExecutionStep])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListPipelineExecutionStepsResponse Source #

Create a value of ListPipelineExecutionStepsResponse 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:pipelineExecutionSteps:ListPipelineExecutionStepsResponse', listPipelineExecutionStepsResponse_pipelineExecutionSteps - A list of PipeLineExecutionStep objects. Each PipeLineExecutionStep consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.

$sel:nextToken:ListPipelineExecutionSteps', listPipelineExecutionStepsResponse_nextToken - If the result of the previous ListPipelineExecutionSteps request was truncated, the response includes a NextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.

$sel:httpStatus:ListPipelineExecutionStepsResponse', listPipelineExecutionStepsResponse_httpStatus - The response's http status code.

Response Lenses

listPipelineExecutionStepsResponse_pipelineExecutionSteps :: Lens' ListPipelineExecutionStepsResponse (Maybe [PipelineExecutionStep]) Source #

A list of PipeLineExecutionStep objects. Each PipeLineExecutionStep consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.

listPipelineExecutionStepsResponse_nextToken :: Lens' ListPipelineExecutionStepsResponse (Maybe Text) Source #

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