/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Container for human task user interface information.

See Also:

* AWS * API Reference

*/ class HumanTaskUiSummary { public: AWS_SAGEMAKER_API HumanTaskUiSummary(); AWS_SAGEMAKER_API HumanTaskUiSummary(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API HumanTaskUiSummary& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the human task user interface.

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

The name of the human task user interface.

*/ inline bool HumanTaskUiNameHasBeenSet() const { return m_humanTaskUiNameHasBeenSet; } /** *

The name of the human task user interface.

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

The name of the human task user interface.

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

The name of the human task user interface.

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

The name of the human task user interface.

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

The name of the human task user interface.

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

The name of the human task user interface.

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

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

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

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

*/ inline bool HumanTaskUiArnHasBeenSet() const { return m_humanTaskUiArnHasBeenSet; } /** *

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

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

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

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

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

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

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

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

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

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

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

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

A timestamp when SageMaker created the human task user interface.

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

A timestamp when SageMaker created the human task user interface.

*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *

A timestamp when SageMaker created the human task user interface.

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

A timestamp when SageMaker created the human task user interface.

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

A timestamp when SageMaker created the human task user interface.

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

A timestamp when SageMaker created the human task user interface.

*/ inline HumanTaskUiSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} private: Aws::String m_humanTaskUiName; bool m_humanTaskUiNameHasBeenSet = false; Aws::String m_humanTaskUiArn; bool m_humanTaskUiArnHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws