/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for data related to the storage class analysis for an Amazon S3
* bucket for export.See Also:
AWS
* API Reference
The version of the output schema to use when exporting data. Must be
* V_1
.
The version of the output schema to use when exporting data. Must be
* V_1
.
The version of the output schema to use when exporting data. Must be
* V_1
.
The version of the output schema to use when exporting data. Must be
* V_1
.
The version of the output schema to use when exporting data. Must be
* V_1
.
The version of the output schema to use when exporting data. Must be
* V_1
.
The place to store the data for an analysis.
*/ inline const AnalyticsExportDestination& GetDestination() const{ return m_destination; } /** *The place to store the data for an analysis.
*/ inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; } /** *The place to store the data for an analysis.
*/ inline void SetDestination(const AnalyticsExportDestination& value) { m_destinationHasBeenSet = true; m_destination = value; } /** *The place to store the data for an analysis.
*/ inline void SetDestination(AnalyticsExportDestination&& value) { m_destinationHasBeenSet = true; m_destination = std::move(value); } /** *The place to store the data for an analysis.
*/ inline StorageClassAnalysisDataExport& WithDestination(const AnalyticsExportDestination& value) { SetDestination(value); return *this;} /** *The place to store the data for an analysis.
*/ inline StorageClassAnalysisDataExport& WithDestination(AnalyticsExportDestination&& value) { SetDestination(std::move(value)); return *this;} private: StorageClassAnalysisSchemaVersion m_outputSchemaVersion; bool m_outputSchemaVersionHasBeenSet; AnalyticsExportDestination m_destination; bool m_destinationHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws