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

An object containing the human loop input in JSON format.

See * Also:

AWS * API Reference

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

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline const Aws::String& GetInputContent() const{ return m_inputContent; } /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline bool InputContentHasBeenSet() const { return m_inputContentHasBeenSet; } /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline void SetInputContent(const Aws::String& value) { m_inputContentHasBeenSet = true; m_inputContent = value; } /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline void SetInputContent(Aws::String&& value) { m_inputContentHasBeenSet = true; m_inputContent = std::move(value); } /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline void SetInputContent(const char* value) { m_inputContentHasBeenSet = true; m_inputContent.assign(value); } /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline HumanLoopInput& WithInputContent(const Aws::String& value) { SetInputContent(value); return *this;} /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline HumanLoopInput& WithInputContent(Aws::String&& value) { SetInputContent(std::move(value)); return *this;} /** *

Serialized input from the human loop. The input must be a string * representation of a file in JSON format.

*/ inline HumanLoopInput& WithInputContent(const char* value) { SetInputContent(value); return *this;} private: Aws::String m_inputContent; bool m_inputContentHasBeenSet = false; }; } // namespace Model } // namespace AugmentedAIRuntime } // namespace Aws