/** * 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 ListTrainingJobsForHyperParameterTuningJobRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API ListTrainingJobsForHyperParameterTuningJobRequest(); // 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 "ListTrainingJobsForHyperParameterTuningJob"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the tuning job whose training jobs you want to list.

*/ inline const Aws::String& GetHyperParameterTuningJobName() const{ return m_hyperParameterTuningJobName; } /** *

The name of the tuning job whose training jobs you want to list.

*/ inline bool HyperParameterTuningJobNameHasBeenSet() const { return m_hyperParameterTuningJobNameHasBeenSet; } /** *

The name of the tuning job whose training jobs you want to list.

*/ inline void SetHyperParameterTuningJobName(const Aws::String& value) { m_hyperParameterTuningJobNameHasBeenSet = true; m_hyperParameterTuningJobName = value; } /** *

The name of the tuning job whose training jobs you want to list.

*/ inline void SetHyperParameterTuningJobName(Aws::String&& value) { m_hyperParameterTuningJobNameHasBeenSet = true; m_hyperParameterTuningJobName = std::move(value); } /** *

The name of the tuning job whose training jobs you want to list.

*/ inline void SetHyperParameterTuningJobName(const char* value) { m_hyperParameterTuningJobNameHasBeenSet = true; m_hyperParameterTuningJobName.assign(value); } /** *

The name of the tuning job whose training jobs you want to list.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithHyperParameterTuningJobName(const Aws::String& value) { SetHyperParameterTuningJobName(value); return *this;} /** *

The name of the tuning job whose training jobs you want to list.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithHyperParameterTuningJobName(Aws::String&& value) { SetHyperParameterTuningJobName(std::move(value)); return *this;} /** *

The name of the tuning job whose training jobs you want to list.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithHyperParameterTuningJobName(const char* value) { SetHyperParameterTuningJobName(value); return *this;} /** *

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

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

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

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

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

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

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

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

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

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

The maximum number of training jobs to return. The default value is 10.

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

The maximum number of training jobs to return. The default value is 10.

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

The maximum number of training jobs to return. The default value is 10.

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

The maximum number of training jobs to return. The default value is 10.

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

A filter that returns only training jobs with the specified status.

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

A filter that returns only training jobs with the specified status.

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

A filter that returns only training jobs with the specified status.

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

A filter that returns only training jobs with the specified status.

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

A filter that returns only training jobs with the specified status.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithStatusEquals(const TrainingJobStatus& value) { SetStatusEquals(value); return *this;} /** *

A filter that returns only training jobs with the specified status.

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

The field to sort results by. The default is Name.

If the * value of this field is FinalObjectiveMetricValue, any training jobs * that did not return an objective metric are not listed.

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

The field to sort results by. The default is Name.

If the * value of this field is FinalObjectiveMetricValue, any training jobs * that did not return an objective metric are not listed.

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

The field to sort results by. The default is Name.

If the * value of this field is FinalObjectiveMetricValue, any training jobs * that did not return an objective metric are not listed.

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

The field to sort results by. The default is Name.

If the * value of this field is FinalObjectiveMetricValue, any training jobs * that did not return an objective metric are not listed.

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

The field to sort results by. The default is Name.

If the * value of this field is FinalObjectiveMetricValue, any training jobs * that did not return an objective metric are not listed.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithSortBy(const TrainingJobSortByOptions& value) { SetSortBy(value); return *this;} /** *

The field to sort results by. The default is Name.

If the * value of this field is FinalObjectiveMetricValue, any training jobs * that did not return an objective metric are not listed.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithSortBy(TrainingJobSortByOptions&& 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 ListTrainingJobsForHyperParameterTuningJobRequest& WithSortOrder(const SortOrder& value) { SetSortOrder(value); return *this;} /** *

The sort order for results. The default is Ascending.

*/ inline ListTrainingJobsForHyperParameterTuningJobRequest& WithSortOrder(SortOrder&& value) { SetSortOrder(std::move(value)); return *this;} private: Aws::String m_hyperParameterTuningJobName; bool m_hyperParameterTuningJobNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; TrainingJobStatus m_statusEquals; bool m_statusEqualsHasBeenSet = false; TrainingJobSortByOptions m_sortBy; bool m_sortByHasBeenSet = false; SortOrder m_sortOrder; bool m_sortOrderHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws