/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DataExchange { namespace Model { /** *

Details of the operation to be performed by the job.

See Also:

* AWS * API Reference

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

The unique identifier for the data set associated with this export job.

*/ inline const Aws::String& GetDataSetId() const{ return m_dataSetId; } /** *

The unique identifier for the data set associated with this export job.

*/ inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; } /** *

The unique identifier for the data set associated with this export job.

*/ inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; } /** *

The unique identifier for the data set associated with this export job.

*/ inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); } /** *

The unique identifier for the data set associated with this export job.

*/ inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); } /** *

The unique identifier for the data set associated with this export job.

*/ inline ExportRevisionsToS3RequestDetails& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *

The unique identifier for the data set associated with this export job.

*/ inline ExportRevisionsToS3RequestDetails& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;} /** *

The unique identifier for the data set associated with this export job.

*/ inline ExportRevisionsToS3RequestDetails& WithDataSetId(const char* value) { SetDataSetId(value); return *this;} /** *

Encryption configuration for the export job.

*/ inline const ExportServerSideEncryption& GetEncryption() const{ return m_encryption; } /** *

Encryption configuration for the export job.

*/ inline bool EncryptionHasBeenSet() const { return m_encryptionHasBeenSet; } /** *

Encryption configuration for the export job.

*/ inline void SetEncryption(const ExportServerSideEncryption& value) { m_encryptionHasBeenSet = true; m_encryption = value; } /** *

Encryption configuration for the export job.

*/ inline void SetEncryption(ExportServerSideEncryption&& value) { m_encryptionHasBeenSet = true; m_encryption = std::move(value); } /** *

Encryption configuration for the export job.

*/ inline ExportRevisionsToS3RequestDetails& WithEncryption(const ExportServerSideEncryption& value) { SetEncryption(value); return *this;} /** *

Encryption configuration for the export job.

*/ inline ExportRevisionsToS3RequestDetails& WithEncryption(ExportServerSideEncryption&& value) { SetEncryption(std::move(value)); return *this;} /** *

The destination for the revision.

*/ inline const Aws::Vector& GetRevisionDestinations() const{ return m_revisionDestinations; } /** *

The destination for the revision.

*/ inline bool RevisionDestinationsHasBeenSet() const { return m_revisionDestinationsHasBeenSet; } /** *

The destination for the revision.

*/ inline void SetRevisionDestinations(const Aws::Vector& value) { m_revisionDestinationsHasBeenSet = true; m_revisionDestinations = value; } /** *

The destination for the revision.

*/ inline void SetRevisionDestinations(Aws::Vector&& value) { m_revisionDestinationsHasBeenSet = true; m_revisionDestinations = std::move(value); } /** *

The destination for the revision.

*/ inline ExportRevisionsToS3RequestDetails& WithRevisionDestinations(const Aws::Vector& value) { SetRevisionDestinations(value); return *this;} /** *

The destination for the revision.

*/ inline ExportRevisionsToS3RequestDetails& WithRevisionDestinations(Aws::Vector&& value) { SetRevisionDestinations(std::move(value)); return *this;} /** *

The destination for the revision.

*/ inline ExportRevisionsToS3RequestDetails& AddRevisionDestinations(const RevisionDestinationEntry& value) { m_revisionDestinationsHasBeenSet = true; m_revisionDestinations.push_back(value); return *this; } /** *

The destination for the revision.

*/ inline ExportRevisionsToS3RequestDetails& AddRevisionDestinations(RevisionDestinationEntry&& value) { m_revisionDestinationsHasBeenSet = true; m_revisionDestinations.push_back(std::move(value)); return *this; } private: Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet = false; ExportServerSideEncryption m_encryption; bool m_encryptionHasBeenSet = false; Aws::Vector m_revisionDestinations; bool m_revisionDestinationsHasBeenSet = false; }; } // namespace Model } // namespace DataExchange } // namespace Aws