/** * 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 Comprehend { namespace Model { /** *

Output data configuration.

See Also:

AWS * API Reference

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

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline const Aws::String& GetFlywheelStatsS3Prefix() const{ return m_flywheelStatsS3Prefix; } /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline bool FlywheelStatsS3PrefixHasBeenSet() const { return m_flywheelStatsS3PrefixHasBeenSet; } /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline void SetFlywheelStatsS3Prefix(const Aws::String& value) { m_flywheelStatsS3PrefixHasBeenSet = true; m_flywheelStatsS3Prefix = value; } /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline void SetFlywheelStatsS3Prefix(Aws::String&& value) { m_flywheelStatsS3PrefixHasBeenSet = true; m_flywheelStatsS3Prefix = std::move(value); } /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline void SetFlywheelStatsS3Prefix(const char* value) { m_flywheelStatsS3PrefixHasBeenSet = true; m_flywheelStatsS3Prefix.assign(value); } /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline EntityRecognizerOutputDataConfig& WithFlywheelStatsS3Prefix(const Aws::String& value) { SetFlywheelStatsS3Prefix(value); return *this;} /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline EntityRecognizerOutputDataConfig& WithFlywheelStatsS3Prefix(Aws::String&& value) { SetFlywheelStatsS3Prefix(std::move(value)); return *this;} /** *

The Amazon S3 prefix for the data lake location of the flywheel * statistics.

*/ inline EntityRecognizerOutputDataConfig& WithFlywheelStatsS3Prefix(const char* value) { SetFlywheelStatsS3Prefix(value); return *this;} private: Aws::String m_flywheelStatsS3Prefix; bool m_flywheelStatsS3PrefixHasBeenSet = false; }; } // namespace Model } // namespace Comprehend } // namespace Aws