/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that contains information about where Evidently is to store
* evaluation events for longer term storage.See Also:
AWS
* API Reference
If the project stores evaluation events in CloudWatch Logs, this structure * stores the log group name.
*/ inline const CloudWatchLogsDestinationConfig& GetCloudWatchLogs() const{ return m_cloudWatchLogs; } /** *If the project stores evaluation events in CloudWatch Logs, this structure * stores the log group name.
*/ inline bool CloudWatchLogsHasBeenSet() const { return m_cloudWatchLogsHasBeenSet; } /** *If the project stores evaluation events in CloudWatch Logs, this structure * stores the log group name.
*/ inline void SetCloudWatchLogs(const CloudWatchLogsDestinationConfig& value) { m_cloudWatchLogsHasBeenSet = true; m_cloudWatchLogs = value; } /** *If the project stores evaluation events in CloudWatch Logs, this structure * stores the log group name.
*/ inline void SetCloudWatchLogs(CloudWatchLogsDestinationConfig&& value) { m_cloudWatchLogsHasBeenSet = true; m_cloudWatchLogs = std::move(value); } /** *If the project stores evaluation events in CloudWatch Logs, this structure * stores the log group name.
*/ inline ProjectDataDeliveryConfig& WithCloudWatchLogs(const CloudWatchLogsDestinationConfig& value) { SetCloudWatchLogs(value); return *this;} /** *If the project stores evaluation events in CloudWatch Logs, this structure * stores the log group name.
*/ inline ProjectDataDeliveryConfig& WithCloudWatchLogs(CloudWatchLogsDestinationConfig&& value) { SetCloudWatchLogs(std::move(value)); return *this;} /** *If the project stores evaluation events in an Amazon S3 bucket, this * structure stores the bucket name and bucket prefix.
*/ inline const S3DestinationConfig& GetS3Destination() const{ return m_s3Destination; } /** *If the project stores evaluation events in an Amazon S3 bucket, this * structure stores the bucket name and bucket prefix.
*/ inline bool S3DestinationHasBeenSet() const { return m_s3DestinationHasBeenSet; } /** *If the project stores evaluation events in an Amazon S3 bucket, this * structure stores the bucket name and bucket prefix.
*/ inline void SetS3Destination(const S3DestinationConfig& value) { m_s3DestinationHasBeenSet = true; m_s3Destination = value; } /** *If the project stores evaluation events in an Amazon S3 bucket, this * structure stores the bucket name and bucket prefix.
*/ inline void SetS3Destination(S3DestinationConfig&& value) { m_s3DestinationHasBeenSet = true; m_s3Destination = std::move(value); } /** *If the project stores evaluation events in an Amazon S3 bucket, this * structure stores the bucket name and bucket prefix.
*/ inline ProjectDataDeliveryConfig& WithS3Destination(const S3DestinationConfig& value) { SetS3Destination(value); return *this;} /** *If the project stores evaluation events in an Amazon S3 bucket, this * structure stores the bucket name and bucket prefix.
*/ inline ProjectDataDeliveryConfig& WithS3Destination(S3DestinationConfig&& value) { SetS3Destination(std::move(value)); return *this;} private: CloudWatchLogsDestinationConfig m_cloudWatchLogs; bool m_cloudWatchLogsHasBeenSet = false; S3DestinationConfig m_s3Destination; bool m_s3DestinationHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchEvidently } // namespace Aws