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

The name of the component to update.

*/ inline const Aws::String& GetTrialComponentName() const{ return m_trialComponentName; } /** *

The name of the component to update.

*/ inline bool TrialComponentNameHasBeenSet() const { return m_trialComponentNameHasBeenSet; } /** *

The name of the component to update.

*/ inline void SetTrialComponentName(const Aws::String& value) { m_trialComponentNameHasBeenSet = true; m_trialComponentName = value; } /** *

The name of the component to update.

*/ inline void SetTrialComponentName(Aws::String&& value) { m_trialComponentNameHasBeenSet = true; m_trialComponentName = std::move(value); } /** *

The name of the component to update.

*/ inline void SetTrialComponentName(const char* value) { m_trialComponentNameHasBeenSet = true; m_trialComponentName.assign(value); } /** *

The name of the component to update.

*/ inline UpdateTrialComponentRequest& WithTrialComponentName(const Aws::String& value) { SetTrialComponentName(value); return *this;} /** *

The name of the component to update.

*/ inline UpdateTrialComponentRequest& WithTrialComponentName(Aws::String&& value) { SetTrialComponentName(std::move(value)); return *this;} /** *

The name of the component to update.

*/ inline UpdateTrialComponentRequest& WithTrialComponentName(const char* value) { SetTrialComponentName(value); return *this;} /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline const Aws::String& GetDisplayName() const{ return m_displayName; } /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; } /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; } /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); } /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); } /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline UpdateTrialComponentRequest& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;} /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline UpdateTrialComponentRequest& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;} /** *

The name of the component as displayed. The name doesn't need to be unique. * If DisplayName isn't specified, TrialComponentName is * displayed.

*/ inline UpdateTrialComponentRequest& WithDisplayName(const char* value) { SetDisplayName(value); return *this;} /** *

The new status of the component.

*/ inline const TrialComponentStatus& GetStatus() const{ return m_status; } /** *

The new status of the component.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The new status of the component.

*/ inline void SetStatus(const TrialComponentStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The new status of the component.

*/ inline void SetStatus(TrialComponentStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The new status of the component.

*/ inline UpdateTrialComponentRequest& WithStatus(const TrialComponentStatus& value) { SetStatus(value); return *this;} /** *

The new status of the component.

*/ inline UpdateTrialComponentRequest& WithStatus(TrialComponentStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

When the component started.

*/ inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; } /** *

When the component started.

*/ inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; } /** *

When the component started.

*/ inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = value; } /** *

When the component started.

*/ inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); } /** *

When the component started.

*/ inline UpdateTrialComponentRequest& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;} /** *

When the component started.

*/ inline UpdateTrialComponentRequest& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;} /** *

When the component ended.

*/ inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; } /** *

When the component ended.

*/ inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; } /** *

When the component ended.

*/ inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; } /** *

When the component ended.

*/ inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); } /** *

When the component ended.

*/ inline UpdateTrialComponentRequest& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;} /** *

When the component ended.

*/ inline UpdateTrialComponentRequest& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;} /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline const Aws::Map& GetParameters() const{ return m_parameters; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline void SetParameters(const Aws::Map& value) { m_parametersHasBeenSet = true; m_parameters = value; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline void SetParameters(Aws::Map&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& WithParameters(const Aws::Map& value) { SetParameters(value); return *this;} /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& WithParameters(Aws::Map&& value) { SetParameters(std::move(value)); return *this;} /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& AddParameters(const Aws::String& key, const TrialComponentParameterValue& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& AddParameters(Aws::String&& key, const TrialComponentParameterValue& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& AddParameters(const Aws::String& key, TrialComponentParameterValue&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& AddParameters(Aws::String&& key, TrialComponentParameterValue&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), std::move(value)); return *this; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& AddParameters(const char* key, TrialComponentParameterValue&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *

Replaces all of the component's hyperparameters with the specified * hyperparameters or add new hyperparameters. Existing hyperparameters are * replaced if the trial component is updated with an identical hyperparameter * key.

*/ inline UpdateTrialComponentRequest& AddParameters(const char* key, const TrialComponentParameterValue& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } /** *

The hyperparameters to remove from the component.

*/ inline const Aws::Vector& GetParametersToRemove() const{ return m_parametersToRemove; } /** *

The hyperparameters to remove from the component.

*/ inline bool ParametersToRemoveHasBeenSet() const { return m_parametersToRemoveHasBeenSet; } /** *

The hyperparameters to remove from the component.

*/ inline void SetParametersToRemove(const Aws::Vector& value) { m_parametersToRemoveHasBeenSet = true; m_parametersToRemove = value; } /** *

The hyperparameters to remove from the component.

*/ inline void SetParametersToRemove(Aws::Vector&& value) { m_parametersToRemoveHasBeenSet = true; m_parametersToRemove = std::move(value); } /** *

The hyperparameters to remove from the component.

*/ inline UpdateTrialComponentRequest& WithParametersToRemove(const Aws::Vector& value) { SetParametersToRemove(value); return *this;} /** *

The hyperparameters to remove from the component.

*/ inline UpdateTrialComponentRequest& WithParametersToRemove(Aws::Vector&& value) { SetParametersToRemove(std::move(value)); return *this;} /** *

The hyperparameters to remove from the component.

*/ inline UpdateTrialComponentRequest& AddParametersToRemove(const Aws::String& value) { m_parametersToRemoveHasBeenSet = true; m_parametersToRemove.push_back(value); return *this; } /** *

The hyperparameters to remove from the component.

*/ inline UpdateTrialComponentRequest& AddParametersToRemove(Aws::String&& value) { m_parametersToRemoveHasBeenSet = true; m_parametersToRemove.push_back(std::move(value)); return *this; } /** *

The hyperparameters to remove from the component.

*/ inline UpdateTrialComponentRequest& AddParametersToRemove(const char* value) { m_parametersToRemoveHasBeenSet = true; m_parametersToRemove.push_back(value); return *this; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline const Aws::Map& GetInputArtifacts() const{ return m_inputArtifacts; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline bool InputArtifactsHasBeenSet() const { return m_inputArtifactsHasBeenSet; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline void SetInputArtifacts(const Aws::Map& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts = value; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline void SetInputArtifacts(Aws::Map&& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts = std::move(value); } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& WithInputArtifacts(const Aws::Map& value) { SetInputArtifacts(value); return *this;} /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& WithInputArtifacts(Aws::Map&& value) { SetInputArtifacts(std::move(value)); return *this;} /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& AddInputArtifacts(const Aws::String& key, const TrialComponentArtifact& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts.emplace(key, value); return *this; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& AddInputArtifacts(Aws::String&& key, const TrialComponentArtifact& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts.emplace(std::move(key), value); return *this; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& AddInputArtifacts(const Aws::String& key, TrialComponentArtifact&& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts.emplace(key, std::move(value)); return *this; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& AddInputArtifacts(Aws::String&& key, TrialComponentArtifact&& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts.emplace(std::move(key), std::move(value)); return *this; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& AddInputArtifacts(const char* key, TrialComponentArtifact&& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts.emplace(key, std::move(value)); return *this; } /** *

Replaces all of the component's input artifacts with the specified artifacts * or adds new input artifacts. Existing input artifacts are replaced if the trial * component is updated with an identical input artifact key.

*/ inline UpdateTrialComponentRequest& AddInputArtifacts(const char* key, const TrialComponentArtifact& value) { m_inputArtifactsHasBeenSet = true; m_inputArtifacts.emplace(key, value); return *this; } /** *

The input artifacts to remove from the component.

*/ inline const Aws::Vector& GetInputArtifactsToRemove() const{ return m_inputArtifactsToRemove; } /** *

The input artifacts to remove from the component.

*/ inline bool InputArtifactsToRemoveHasBeenSet() const { return m_inputArtifactsToRemoveHasBeenSet; } /** *

The input artifacts to remove from the component.

*/ inline void SetInputArtifactsToRemove(const Aws::Vector& value) { m_inputArtifactsToRemoveHasBeenSet = true; m_inputArtifactsToRemove = value; } /** *

The input artifacts to remove from the component.

*/ inline void SetInputArtifactsToRemove(Aws::Vector&& value) { m_inputArtifactsToRemoveHasBeenSet = true; m_inputArtifactsToRemove = std::move(value); } /** *

The input artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& WithInputArtifactsToRemove(const Aws::Vector& value) { SetInputArtifactsToRemove(value); return *this;} /** *

The input artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& WithInputArtifactsToRemove(Aws::Vector&& value) { SetInputArtifactsToRemove(std::move(value)); return *this;} /** *

The input artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& AddInputArtifactsToRemove(const Aws::String& value) { m_inputArtifactsToRemoveHasBeenSet = true; m_inputArtifactsToRemove.push_back(value); return *this; } /** *

The input artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& AddInputArtifactsToRemove(Aws::String&& value) { m_inputArtifactsToRemoveHasBeenSet = true; m_inputArtifactsToRemove.push_back(std::move(value)); return *this; } /** *

The input artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& AddInputArtifactsToRemove(const char* value) { m_inputArtifactsToRemoveHasBeenSet = true; m_inputArtifactsToRemove.push_back(value); return *this; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline const Aws::Map& GetOutputArtifacts() const{ return m_outputArtifacts; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline bool OutputArtifactsHasBeenSet() const { return m_outputArtifactsHasBeenSet; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline void SetOutputArtifacts(const Aws::Map& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts = value; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline void SetOutputArtifacts(Aws::Map&& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts = std::move(value); } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& WithOutputArtifacts(const Aws::Map& value) { SetOutputArtifacts(value); return *this;} /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& WithOutputArtifacts(Aws::Map&& value) { SetOutputArtifacts(std::move(value)); return *this;} /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& AddOutputArtifacts(const Aws::String& key, const TrialComponentArtifact& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.emplace(key, value); return *this; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& AddOutputArtifacts(Aws::String&& key, const TrialComponentArtifact& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.emplace(std::move(key), value); return *this; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& AddOutputArtifacts(const Aws::String& key, TrialComponentArtifact&& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.emplace(key, std::move(value)); return *this; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& AddOutputArtifacts(Aws::String&& key, TrialComponentArtifact&& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.emplace(std::move(key), std::move(value)); return *this; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& AddOutputArtifacts(const char* key, TrialComponentArtifact&& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.emplace(key, std::move(value)); return *this; } /** *

Replaces all of the component's output artifacts with the specified artifacts * or adds new output artifacts. Existing output artifacts are replaced if the * trial component is updated with an identical output artifact key.

*/ inline UpdateTrialComponentRequest& AddOutputArtifacts(const char* key, const TrialComponentArtifact& value) { m_outputArtifactsHasBeenSet = true; m_outputArtifacts.emplace(key, value); return *this; } /** *

The output artifacts to remove from the component.

*/ inline const Aws::Vector& GetOutputArtifactsToRemove() const{ return m_outputArtifactsToRemove; } /** *

The output artifacts to remove from the component.

*/ inline bool OutputArtifactsToRemoveHasBeenSet() const { return m_outputArtifactsToRemoveHasBeenSet; } /** *

The output artifacts to remove from the component.

*/ inline void SetOutputArtifactsToRemove(const Aws::Vector& value) { m_outputArtifactsToRemoveHasBeenSet = true; m_outputArtifactsToRemove = value; } /** *

The output artifacts to remove from the component.

*/ inline void SetOutputArtifactsToRemove(Aws::Vector&& value) { m_outputArtifactsToRemoveHasBeenSet = true; m_outputArtifactsToRemove = std::move(value); } /** *

The output artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& WithOutputArtifactsToRemove(const Aws::Vector& value) { SetOutputArtifactsToRemove(value); return *this;} /** *

The output artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& WithOutputArtifactsToRemove(Aws::Vector&& value) { SetOutputArtifactsToRemove(std::move(value)); return *this;} /** *

The output artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& AddOutputArtifactsToRemove(const Aws::String& value) { m_outputArtifactsToRemoveHasBeenSet = true; m_outputArtifactsToRemove.push_back(value); return *this; } /** *

The output artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& AddOutputArtifactsToRemove(Aws::String&& value) { m_outputArtifactsToRemoveHasBeenSet = true; m_outputArtifactsToRemove.push_back(std::move(value)); return *this; } /** *

The output artifacts to remove from the component.

*/ inline UpdateTrialComponentRequest& AddOutputArtifactsToRemove(const char* value) { m_outputArtifactsToRemoveHasBeenSet = true; m_outputArtifactsToRemove.push_back(value); return *this; } private: Aws::String m_trialComponentName; bool m_trialComponentNameHasBeenSet = false; Aws::String m_displayName; bool m_displayNameHasBeenSet = false; TrialComponentStatus m_status; bool m_statusHasBeenSet = false; Aws::Utils::DateTime m_startTime; bool m_startTimeHasBeenSet = false; Aws::Utils::DateTime m_endTime; bool m_endTimeHasBeenSet = false; Aws::Map m_parameters; bool m_parametersHasBeenSet = false; Aws::Vector m_parametersToRemove; bool m_parametersToRemoveHasBeenSet = false; Aws::Map m_inputArtifacts; bool m_inputArtifactsHasBeenSet = false; Aws::Vector m_inputArtifactsToRemove; bool m_inputArtifactsToRemoveHasBeenSet = false; Aws::Map m_outputArtifacts; bool m_outputArtifactsHasBeenSet = false; Aws::Vector m_outputArtifactsToRemove; bool m_outputArtifactsToRemoveHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws