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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

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

The Amazon Resource Name (ARN) of the human task user interface (worker task * template).

*/ inline DescribeHumanTaskUiResult& WithHumanTaskUiArn(const char* value) { SetHumanTaskUiArn(value); return *this;} /** *

The name of the human task user interface (worker task template).

*/ inline const Aws::String& GetHumanTaskUiName() const{ return m_humanTaskUiName; } /** *

The name of the human task user interface (worker task template).

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

The name of the human task user interface (worker task template).

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

The name of the human task user interface (worker task template).

*/ inline void SetHumanTaskUiName(const char* value) { m_humanTaskUiName.assign(value); } /** *

The name of the human task user interface (worker task template).

*/ inline DescribeHumanTaskUiResult& WithHumanTaskUiName(const Aws::String& value) { SetHumanTaskUiName(value); return *this;} /** *

The name of the human task user interface (worker task template).

*/ inline DescribeHumanTaskUiResult& WithHumanTaskUiName(Aws::String&& value) { SetHumanTaskUiName(std::move(value)); return *this;} /** *

The name of the human task user interface (worker task template).

*/ inline DescribeHumanTaskUiResult& WithHumanTaskUiName(const char* value) { SetHumanTaskUiName(value); return *this;} /** *

The status of the human task user interface (worker task template). Valid * values are listed below.

*/ inline const HumanTaskUiStatus& GetHumanTaskUiStatus() const{ return m_humanTaskUiStatus; } /** *

The status of the human task user interface (worker task template). Valid * values are listed below.

*/ inline void SetHumanTaskUiStatus(const HumanTaskUiStatus& value) { m_humanTaskUiStatus = value; } /** *

The status of the human task user interface (worker task template). Valid * values are listed below.

*/ inline void SetHumanTaskUiStatus(HumanTaskUiStatus&& value) { m_humanTaskUiStatus = std::move(value); } /** *

The status of the human task user interface (worker task template). Valid * values are listed below.

*/ inline DescribeHumanTaskUiResult& WithHumanTaskUiStatus(const HumanTaskUiStatus& value) { SetHumanTaskUiStatus(value); return *this;} /** *

The status of the human task user interface (worker task template). Valid * values are listed below.

*/ inline DescribeHumanTaskUiResult& WithHumanTaskUiStatus(HumanTaskUiStatus&& value) { SetHumanTaskUiStatus(std::move(value)); return *this;} /** *

The timestamp when the human task user interface was created.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The timestamp when the human task user interface was created.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

The timestamp when the human task user interface was created.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

The timestamp when the human task user interface was created.

*/ inline DescribeHumanTaskUiResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The timestamp when the human task user interface was created.

*/ inline DescribeHumanTaskUiResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} inline const UiTemplateInfo& GetUiTemplate() const{ return m_uiTemplate; } inline void SetUiTemplate(const UiTemplateInfo& value) { m_uiTemplate = value; } inline void SetUiTemplate(UiTemplateInfo&& value) { m_uiTemplate = std::move(value); } inline DescribeHumanTaskUiResult& WithUiTemplate(const UiTemplateInfo& value) { SetUiTemplate(value); return *this;} inline DescribeHumanTaskUiResult& WithUiTemplate(UiTemplateInfo&& value) { SetUiTemplate(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeHumanTaskUiResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeHumanTaskUiResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeHumanTaskUiResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_humanTaskUiArn; Aws::String m_humanTaskUiName; HumanTaskUiStatus m_humanTaskUiStatus; Aws::Utils::DateTime m_creationTime; UiTemplateInfo m_uiTemplate; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws