/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class AWS_SAGEMAKER_API DeleteExperimentResult { public: DeleteExperimentResult(); DeleteExperimentResult(const Aws::AmazonWebServiceResult& result); DeleteExperimentResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline const Aws::String& GetExperimentArn() const{ return m_experimentArn; } /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline void SetExperimentArn(const Aws::String& value) { m_experimentArn = value; } /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline void SetExperimentArn(Aws::String&& value) { m_experimentArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline void SetExperimentArn(const char* value) { m_experimentArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline DeleteExperimentResult& WithExperimentArn(const Aws::String& value) { SetExperimentArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline DeleteExperimentResult& WithExperimentArn(Aws::String&& value) { SetExperimentArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the experiment that is being deleted.

*/ inline DeleteExperimentResult& WithExperimentArn(const char* value) { SetExperimentArn(value); return *this;} private: Aws::String m_experimentArn; }; } // namespace Model } // namespace SageMaker } // namespace Aws