/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Output data configuration.See Also:
AWS
* API Reference
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