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

Specifies where to store data classification results, and the encryption * settings to use when storing results in that location. The location must be an * S3 bucket.

See Also:

AWS * API Reference

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

The S3 bucket to store data classification results in, and the encryption * settings to use when storing results in that bucket.

*/ inline const S3Destination& GetS3Destination() const{ return m_s3Destination; } /** *

The S3 bucket to store data classification results in, and the encryption * settings to use when storing results in that bucket.

*/ inline bool S3DestinationHasBeenSet() const { return m_s3DestinationHasBeenSet; } /** *

The S3 bucket to store data classification results in, and the encryption * settings to use when storing results in that bucket.

*/ inline void SetS3Destination(const S3Destination& value) { m_s3DestinationHasBeenSet = true; m_s3Destination = value; } /** *

The S3 bucket to store data classification results in, and the encryption * settings to use when storing results in that bucket.

*/ inline void SetS3Destination(S3Destination&& value) { m_s3DestinationHasBeenSet = true; m_s3Destination = std::move(value); } /** *

The S3 bucket to store data classification results in, and the encryption * settings to use when storing results in that bucket.

*/ inline ClassificationExportConfiguration& WithS3Destination(const S3Destination& value) { SetS3Destination(value); return *this;} /** *

The S3 bucket to store data classification results in, and the encryption * settings to use when storing results in that bucket.

*/ inline ClassificationExportConfiguration& WithS3Destination(S3Destination&& value) { SetS3Destination(std::move(value)); return *this;} private: S3Destination m_s3Destination; bool m_s3DestinationHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws