/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object containing the human loop input in JSON format.See
* Also:
AWS
* API Reference
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