/** * 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 { /** *

Information about where the human output will be stored.

See * Also:

AWS * API Reference

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

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline const Aws::String& GetOutputS3Uri() const{ return m_outputS3Uri; } /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline bool OutputS3UriHasBeenSet() const { return m_outputS3UriHasBeenSet; } /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline void SetOutputS3Uri(const Aws::String& value) { m_outputS3UriHasBeenSet = true; m_outputS3Uri = value; } /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline void SetOutputS3Uri(Aws::String&& value) { m_outputS3UriHasBeenSet = true; m_outputS3Uri = std::move(value); } /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline void SetOutputS3Uri(const char* value) { m_outputS3UriHasBeenSet = true; m_outputS3Uri.assign(value); } /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline HumanLoopOutput& WithOutputS3Uri(const Aws::String& value) { SetOutputS3Uri(value); return *this;} /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline HumanLoopOutput& WithOutputS3Uri(Aws::String&& value) { SetOutputS3Uri(std::move(value)); return *this;} /** *

The location of the Amazon S3 object where Amazon Augmented AI stores your * human loop output.

*/ inline HumanLoopOutput& WithOutputS3Uri(const char* value) { SetOutputS3Uri(value); return *this;} private: Aws::String m_outputS3Uri; bool m_outputS3UriHasBeenSet = false; }; } // namespace Model } // namespace AugmentedAIRuntime } // namespace Aws