/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An auto detection metric source.See Also:
AWS
* API Reference
The source's source config.
*/ inline const AutoDetectionS3SourceConfig& GetS3SourceConfig() const{ return m_s3SourceConfig; } /** *The source's source config.
*/ inline bool S3SourceConfigHasBeenSet() const { return m_s3SourceConfigHasBeenSet; } /** *The source's source config.
*/ inline void SetS3SourceConfig(const AutoDetectionS3SourceConfig& value) { m_s3SourceConfigHasBeenSet = true; m_s3SourceConfig = value; } /** *The source's source config.
*/ inline void SetS3SourceConfig(AutoDetectionS3SourceConfig&& value) { m_s3SourceConfigHasBeenSet = true; m_s3SourceConfig = std::move(value); } /** *The source's source config.
*/ inline AutoDetectionMetricSource& WithS3SourceConfig(const AutoDetectionS3SourceConfig& value) { SetS3SourceConfig(value); return *this;} /** *The source's source config.
*/ inline AutoDetectionMetricSource& WithS3SourceConfig(AutoDetectionS3SourceConfig&& value) { SetS3SourceConfig(std::move(value)); return *this;} private: AutoDetectionS3SourceConfig m_s3SourceConfig; bool m_s3SourceConfigHasBeenSet = false; }; } // namespace Model } // namespace LookoutMetrics } // namespace Aws