/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace SageMaker { namespace Model { /** */ class ListPipelineExecutionsRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API ListPipelineExecutionsRequest(); // 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 "ListPipelineExecutions"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline const Aws::String& GetPipelineName() const{ return m_pipelineName; } /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline bool PipelineNameHasBeenSet() const { return m_pipelineNameHasBeenSet; } /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline void SetPipelineName(const Aws::String& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = value; } /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline void SetPipelineName(Aws::String&& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = std::move(value); } /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline void SetPipelineName(const char* value) { m_pipelineNameHasBeenSet = true; m_pipelineName.assign(value); } /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline ListPipelineExecutionsRequest& WithPipelineName(const Aws::String& value) { SetPipelineName(value); return *this;} /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline ListPipelineExecutionsRequest& WithPipelineName(Aws::String&& value) { SetPipelineName(std::move(value)); return *this;} /** *

The name or Amazon Resource Name (ARN) of the pipeline.

*/ inline ListPipelineExecutionsRequest& WithPipelineName(const char* value) { SetPipelineName(value); return *this;} /** *

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

*/ inline const Aws::Utils::DateTime& GetCreatedAfter() const{ return m_createdAfter; } /** *

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

*/ inline bool CreatedAfterHasBeenSet() const { return m_createdAfterHasBeenSet; } /** *

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

*/ inline void SetCreatedAfter(const Aws::Utils::DateTime& value) { m_createdAfterHasBeenSet = true; m_createdAfter = value; } /** *

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

*/ inline void SetCreatedAfter(Aws::Utils::DateTime&& value) { m_createdAfterHasBeenSet = true; m_createdAfter = std::move(value); } /** *

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

*/ inline ListPipelineExecutionsRequest& WithCreatedAfter(const Aws::Utils::DateTime& value) { SetCreatedAfter(value); return *this;} /** *

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

*/ inline ListPipelineExecutionsRequest& WithCreatedAfter(Aws::Utils::DateTime&& value) { SetCreatedAfter(std::move(value)); return *this;} /** *

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

*/ inline const Aws::Utils::DateTime& GetCreatedBefore() const{ return m_createdBefore; } /** *

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

*/ inline bool CreatedBeforeHasBeenSet() const { return m_createdBeforeHasBeenSet; } /** *

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

*/ inline void SetCreatedBefore(const Aws::Utils::DateTime& value) { m_createdBeforeHasBeenSet = true; m_createdBefore = value; } /** *

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

*/ inline void SetCreatedBefore(Aws::Utils::DateTime&& value) { m_createdBeforeHasBeenSet = true; m_createdBefore = std::move(value); } /** *

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

*/ inline ListPipelineExecutionsRequest& WithCreatedBefore(const Aws::Utils::DateTime& value) { SetCreatedBefore(value); return *this;} /** *

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

*/ inline ListPipelineExecutionsRequest& WithCreatedBefore(Aws::Utils::DateTime&& value) { SetCreatedBefore(std::move(value)); return *this;} /** *

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

*/ inline const SortPipelineExecutionsBy& GetSortBy() const{ return m_sortBy; } /** *

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

*/ inline bool SortByHasBeenSet() const { return m_sortByHasBeenSet; } /** *

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

*/ inline void SetSortBy(const SortPipelineExecutionsBy& value) { m_sortByHasBeenSet = true; m_sortBy = value; } /** *

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

*/ inline void SetSortBy(SortPipelineExecutionsBy&& value) { m_sortByHasBeenSet = true; m_sortBy = std::move(value); } /** *

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

*/ inline ListPipelineExecutionsRequest& WithSortBy(const SortPipelineExecutionsBy& value) { SetSortBy(value); return *this;} /** *

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

*/ inline ListPipelineExecutionsRequest& WithSortBy(SortPipelineExecutionsBy&& value) { SetSortBy(std::move(value)); return *this;} /** *

The sort order for results.

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

The sort order for results.

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

The sort order for results.

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

The sort order for results.

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

The sort order for results.

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

The sort order for results.

*/ inline ListPipelineExecutionsRequest& WithSortOrder(SortOrder&& value) { SetSortOrder(std::move(value)); return *this;} /** *

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.

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

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

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.

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

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.

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

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.

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

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.

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

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.

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

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.

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

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

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

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

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

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

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

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

*/ inline ListPipelineExecutionsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_pipelineName; bool m_pipelineNameHasBeenSet = false; Aws::Utils::DateTime m_createdAfter; bool m_createdAfterHasBeenSet = false; Aws::Utils::DateTime m_createdBefore; bool m_createdBeforeHasBeenSet = false; SortPipelineExecutionsBy m_sortBy; bool m_sortByHasBeenSet = false; SortOrder m_sortOrder; bool m_sortOrderHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws