/** * 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 #include namespace Aws { namespace SageMaker { namespace Model { /** */ class ListCompilationJobsRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API ListCompilationJobsRequest(); // 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 "ListCompilationJobs"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

If the result of the previous ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, use the token in the next request.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If the result of the previous ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, use the token in the next request.

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

If the result of the previous ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, 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 ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, 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 ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, 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 ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, use the token in the next request.

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

If the result of the previous ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, use the token in the next request.

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

If the result of the previous ListCompilationJobs request was * truncated, the response includes a NextToken. To retrieve the next * set of model compilation jobs, use the token in the next request.

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

The maximum number of model compilation jobs to return in the response.

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

The maximum number of model compilation jobs to return in the response.

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

The maximum number of model compilation jobs to return in the response.

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

The maximum number of model compilation jobs to return in the response.

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

A filter that returns the model compilation jobs that were created after a * specified time.

*/ inline const Aws::Utils::DateTime& GetCreationTimeAfter() const{ return m_creationTimeAfter; } /** *

A filter that returns the model compilation jobs that were created after a * specified time.

*/ inline bool CreationTimeAfterHasBeenSet() const { return m_creationTimeAfterHasBeenSet; } /** *

A filter that returns the model compilation jobs that were created after a * specified time.

*/ inline void SetCreationTimeAfter(const Aws::Utils::DateTime& value) { m_creationTimeAfterHasBeenSet = true; m_creationTimeAfter = value; } /** *

A filter that returns the model compilation jobs that were created after a * specified time.

*/ inline void SetCreationTimeAfter(Aws::Utils::DateTime&& value) { m_creationTimeAfterHasBeenSet = true; m_creationTimeAfter = std::move(value); } /** *

A filter that returns the model compilation jobs that were created after a * specified time.

*/ inline ListCompilationJobsRequest& WithCreationTimeAfter(const Aws::Utils::DateTime& value) { SetCreationTimeAfter(value); return *this;} /** *

A filter that returns the model compilation jobs that were created after a * specified time.

*/ inline ListCompilationJobsRequest& WithCreationTimeAfter(Aws::Utils::DateTime&& value) { SetCreationTimeAfter(std::move(value)); return *this;} /** *

A filter that returns the model compilation jobs that were created before a * specified time.

*/ inline const Aws::Utils::DateTime& GetCreationTimeBefore() const{ return m_creationTimeBefore; } /** *

A filter that returns the model compilation jobs that were created before a * specified time.

*/ inline bool CreationTimeBeforeHasBeenSet() const { return m_creationTimeBeforeHasBeenSet; } /** *

A filter that returns the model compilation jobs that were created before a * specified time.

*/ inline void SetCreationTimeBefore(const Aws::Utils::DateTime& value) { m_creationTimeBeforeHasBeenSet = true; m_creationTimeBefore = value; } /** *

A filter that returns the model compilation jobs that were created before a * specified time.

*/ inline void SetCreationTimeBefore(Aws::Utils::DateTime&& value) { m_creationTimeBeforeHasBeenSet = true; m_creationTimeBefore = std::move(value); } /** *

A filter that returns the model compilation jobs that were created before a * specified time.

*/ inline ListCompilationJobsRequest& WithCreationTimeBefore(const Aws::Utils::DateTime& value) { SetCreationTimeBefore(value); return *this;} /** *

A filter that returns the model compilation jobs that were created before a * specified time.

*/ inline ListCompilationJobsRequest& WithCreationTimeBefore(Aws::Utils::DateTime&& value) { SetCreationTimeBefore(std::move(value)); return *this;} /** *

A filter that returns the model compilation jobs that were modified after a * specified time.

*/ inline const Aws::Utils::DateTime& GetLastModifiedTimeAfter() const{ return m_lastModifiedTimeAfter; } /** *

A filter that returns the model compilation jobs that were modified after a * specified time.

*/ inline bool LastModifiedTimeAfterHasBeenSet() const { return m_lastModifiedTimeAfterHasBeenSet; } /** *

A filter that returns the model compilation jobs that were modified after a * specified time.

*/ inline void SetLastModifiedTimeAfter(const Aws::Utils::DateTime& value) { m_lastModifiedTimeAfterHasBeenSet = true; m_lastModifiedTimeAfter = value; } /** *

A filter that returns the model compilation jobs that were modified after a * specified time.

*/ inline void SetLastModifiedTimeAfter(Aws::Utils::DateTime&& value) { m_lastModifiedTimeAfterHasBeenSet = true; m_lastModifiedTimeAfter = std::move(value); } /** *

A filter that returns the model compilation jobs that were modified after a * specified time.

*/ inline ListCompilationJobsRequest& WithLastModifiedTimeAfter(const Aws::Utils::DateTime& value) { SetLastModifiedTimeAfter(value); return *this;} /** *

A filter that returns the model compilation jobs that were modified after a * specified time.

*/ inline ListCompilationJobsRequest& WithLastModifiedTimeAfter(Aws::Utils::DateTime&& value) { SetLastModifiedTimeAfter(std::move(value)); return *this;} /** *

A filter that returns the model compilation jobs that were modified before a * specified time.

*/ inline const Aws::Utils::DateTime& GetLastModifiedTimeBefore() const{ return m_lastModifiedTimeBefore; } /** *

A filter that returns the model compilation jobs that were modified before a * specified time.

*/ inline bool LastModifiedTimeBeforeHasBeenSet() const { return m_lastModifiedTimeBeforeHasBeenSet; } /** *

A filter that returns the model compilation jobs that were modified before a * specified time.

*/ inline void SetLastModifiedTimeBefore(const Aws::Utils::DateTime& value) { m_lastModifiedTimeBeforeHasBeenSet = true; m_lastModifiedTimeBefore = value; } /** *

A filter that returns the model compilation jobs that were modified before a * specified time.

*/ inline void SetLastModifiedTimeBefore(Aws::Utils::DateTime&& value) { m_lastModifiedTimeBeforeHasBeenSet = true; m_lastModifiedTimeBefore = std::move(value); } /** *

A filter that returns the model compilation jobs that were modified before a * specified time.

*/ inline ListCompilationJobsRequest& WithLastModifiedTimeBefore(const Aws::Utils::DateTime& value) { SetLastModifiedTimeBefore(value); return *this;} /** *

A filter that returns the model compilation jobs that were modified before a * specified time.

*/ inline ListCompilationJobsRequest& WithLastModifiedTimeBefore(Aws::Utils::DateTime&& value) { SetLastModifiedTimeBefore(std::move(value)); return *this;} /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline const Aws::String& GetNameContains() const{ return m_nameContains; } /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline bool NameContainsHasBeenSet() const { return m_nameContainsHasBeenSet; } /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline void SetNameContains(const Aws::String& value) { m_nameContainsHasBeenSet = true; m_nameContains = value; } /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline void SetNameContains(Aws::String&& value) { m_nameContainsHasBeenSet = true; m_nameContains = std::move(value); } /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline void SetNameContains(const char* value) { m_nameContainsHasBeenSet = true; m_nameContains.assign(value); } /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline ListCompilationJobsRequest& WithNameContains(const Aws::String& value) { SetNameContains(value); return *this;} /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline ListCompilationJobsRequest& WithNameContains(Aws::String&& value) { SetNameContains(std::move(value)); return *this;} /** *

A filter that returns the model compilation jobs whose name contains a * specified string.

*/ inline ListCompilationJobsRequest& WithNameContains(const char* value) { SetNameContains(value); return *this;} /** *

A filter that retrieves model compilation jobs with a specific * CompilationJobStatus status.

*/ inline const CompilationJobStatus& GetStatusEquals() const{ return m_statusEquals; } /** *

A filter that retrieves model compilation jobs with a specific * CompilationJobStatus status.

*/ inline bool StatusEqualsHasBeenSet() const { return m_statusEqualsHasBeenSet; } /** *

A filter that retrieves model compilation jobs with a specific * CompilationJobStatus status.

*/ inline void SetStatusEquals(const CompilationJobStatus& value) { m_statusEqualsHasBeenSet = true; m_statusEquals = value; } /** *

A filter that retrieves model compilation jobs with a specific * CompilationJobStatus status.

*/ inline void SetStatusEquals(CompilationJobStatus&& value) { m_statusEqualsHasBeenSet = true; m_statusEquals = std::move(value); } /** *

A filter that retrieves model compilation jobs with a specific * CompilationJobStatus status.

*/ inline ListCompilationJobsRequest& WithStatusEquals(const CompilationJobStatus& value) { SetStatusEquals(value); return *this;} /** *

A filter that retrieves model compilation jobs with a specific * CompilationJobStatus status.

*/ inline ListCompilationJobsRequest& WithStatusEquals(CompilationJobStatus&& value) { SetStatusEquals(std::move(value)); return *this;} /** *

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

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

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

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

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

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

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

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

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

*/ inline ListCompilationJobsRequest& WithSortBy(const ListCompilationJobsSortBy& value) { SetSortBy(value); return *this;} /** *

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

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

The sort order for results. The default is Ascending.

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

The sort order for results. The default is Ascending.

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

The sort order for results. The default is Ascending.

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

The sort order for results. The default is Ascending.

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

The sort order for results. The default is Ascending.

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

The sort order for results. The default is Ascending.

*/ inline ListCompilationJobsRequest& WithSortOrder(SortOrder&& value) { SetSortOrder(std::move(value)); return *this;} private: Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::Utils::DateTime m_creationTimeAfter; bool m_creationTimeAfterHasBeenSet = false; Aws::Utils::DateTime m_creationTimeBefore; bool m_creationTimeBeforeHasBeenSet = false; Aws::Utils::DateTime m_lastModifiedTimeAfter; bool m_lastModifiedTimeAfterHasBeenSet = false; Aws::Utils::DateTime m_lastModifiedTimeBefore; bool m_lastModifiedTimeBeforeHasBeenSet = false; Aws::String m_nameContains; bool m_nameContainsHasBeenSet = false; CompilationJobStatus m_statusEquals; bool m_statusEqualsHasBeenSet = false; ListCompilationJobsSortBy m_sortBy; bool m_sortByHasBeenSet = false; SortOrder m_sortOrder; bool m_sortOrderHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws