/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SageMaker { namespace Model { /** */ class ListPipelineExecutionStepsRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API ListPipelineExecutionStepsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "ListPipelineExecutionSteps"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

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

*/ inline const Aws::String& GetPipelineExecutionArn() const{ return m_pipelineExecutionArn; } /** *

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

*/ inline bool PipelineExecutionArnHasBeenSet() const { return m_pipelineExecutionArnHasBeenSet; } /** *

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

*/ inline void SetPipelineExecutionArn(const Aws::String& value) { m_pipelineExecutionArnHasBeenSet = true; m_pipelineExecutionArn = value; } /** *

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

*/ inline void SetPipelineExecutionArn(Aws::String&& value) { m_pipelineExecutionArnHasBeenSet = true; m_pipelineExecutionArn = std::move(value); } /** *

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

*/ inline void SetPipelineExecutionArn(const char* value) { m_pipelineExecutionArnHasBeenSet = true; m_pipelineExecutionArn.assign(value); } /** *

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

*/ inline ListPipelineExecutionStepsRequest& WithPipelineExecutionArn(const Aws::String& value) { SetPipelineExecutionArn(value); return *this;} /** *

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

*/ inline ListPipelineExecutionStepsRequest& WithPipelineExecutionArn(Aws::String&& value) { SetPipelineExecutionArn(std::move(value)); return *this;} /** *

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

*/ inline ListPipelineExecutionStepsRequest& WithPipelineExecutionArn(const char* value) { SetPipelineExecutionArn(value); return *this;} /** *

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.

*/ inline const Aws::String& GetNextToken() const{ return m_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.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

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.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

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.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

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.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

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.

*/ inline ListPipelineExecutionStepsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

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.

*/ inline ListPipelineExecutionStepsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

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.

*/ inline ListPipelineExecutionStepsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

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

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

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

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

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

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

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

*/ inline ListPipelineExecutionStepsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

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

*/ inline const SortOrder& GetSortOrder() const{ return m_sortOrder; } /** *

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

*/ inline bool SortOrderHasBeenSet() const { return m_sortOrderHasBeenSet; } /** *

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

*/ inline void SetSortOrder(const SortOrder& value) { m_sortOrderHasBeenSet = true; m_sortOrder = value; } /** *

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

*/ inline void SetSortOrder(SortOrder&& value) { m_sortOrderHasBeenSet = true; m_sortOrder = std::move(value); } /** *

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

*/ inline ListPipelineExecutionStepsRequest& WithSortOrder(const SortOrder& value) { SetSortOrder(value); return *this;} /** *

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

*/ inline ListPipelineExecutionStepsRequest& WithSortOrder(SortOrder&& value) { SetSortOrder(std::move(value)); return *this;} private: Aws::String m_pipelineExecutionArn; bool m_pipelineExecutionArnHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; SortOrder m_sortOrder; bool m_sortOrderHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws