/** * 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 CreateHumanTaskUiResult { public: CreateHumanTaskUiResult(); CreateHumanTaskUiResult(const Aws::AmazonWebServiceResult& result); CreateHumanTaskUiResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

*/ inline const Aws::String& GetHumanTaskUiArn() const{ return m_humanTaskUiArn; } /** *

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

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

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

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

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

*/ inline void SetHumanTaskUiArn(const char* value) { m_humanTaskUiArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

*/ inline CreateHumanTaskUiResult& WithHumanTaskUiArn(const Aws::String& value) { SetHumanTaskUiArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

*/ inline CreateHumanTaskUiResult& WithHumanTaskUiArn(Aws::String&& value) { SetHumanTaskUiArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the human review workflow user interface * you create.

*/ inline CreateHumanTaskUiResult& WithHumanTaskUiArn(const char* value) { SetHumanTaskUiArn(value); return *this;} private: Aws::String m_humanTaskUiArn; }; } // namespace Model } // namespace SageMaker } // namespace Aws