/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details of the operation to be performed by the job.See Also:
* AWS
* API Reference
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::VectorThe destination for the revision.
*/ inline bool RevisionDestinationsHasBeenSet() const { return m_revisionDestinationsHasBeenSet; } /** *The destination for the revision.
*/ inline void SetRevisionDestinations(const Aws::VectorThe destination for the revision.
*/ inline void SetRevisionDestinations(Aws::VectorThe destination for the revision.
*/ inline ExportRevisionsToS3RequestDetails& WithRevisionDestinations(const Aws::VectorThe destination for the revision.
*/ inline ExportRevisionsToS3RequestDetails& WithRevisionDestinations(Aws::VectorThe 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