/** * 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 ExportAssetsToS3RequestDetails { public: AWS_DATAEXCHANGE_API ExportAssetsToS3RequestDetails(); AWS_DATAEXCHANGE_API ExportAssetsToS3RequestDetails(Aws::Utils::Json::JsonView jsonValue); AWS_DATAEXCHANGE_API ExportAssetsToS3RequestDetails& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DATAEXCHANGE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The destination for the asset.

*/ inline const Aws::Vector& GetAssetDestinations() const{ return m_assetDestinations; } /** *

The destination for the asset.

*/ inline bool AssetDestinationsHasBeenSet() const { return m_assetDestinationsHasBeenSet; } /** *

The destination for the asset.

*/ inline void SetAssetDestinations(const Aws::Vector& value) { m_assetDestinationsHasBeenSet = true; m_assetDestinations = value; } /** *

The destination for the asset.

*/ inline void SetAssetDestinations(Aws::Vector&& value) { m_assetDestinationsHasBeenSet = true; m_assetDestinations = std::move(value); } /** *

The destination for the asset.

*/ inline ExportAssetsToS3RequestDetails& WithAssetDestinations(const Aws::Vector& value) { SetAssetDestinations(value); return *this;} /** *

The destination for the asset.

*/ inline ExportAssetsToS3RequestDetails& WithAssetDestinations(Aws::Vector&& value) { SetAssetDestinations(std::move(value)); return *this;} /** *

The destination for the asset.

*/ inline ExportAssetsToS3RequestDetails& AddAssetDestinations(const AssetDestinationEntry& value) { m_assetDestinationsHasBeenSet = true; m_assetDestinations.push_back(value); return *this; } /** *

The destination for the asset.

*/ inline ExportAssetsToS3RequestDetails& AddAssetDestinations(AssetDestinationEntry&& value) { m_assetDestinationsHasBeenSet = true; m_assetDestinations.push_back(std::move(value)); return *this; } /** *

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 ExportAssetsToS3RequestDetails& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *

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

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

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

*/ inline ExportAssetsToS3RequestDetails& 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 ExportAssetsToS3RequestDetails& WithEncryption(const ExportServerSideEncryption& value) { SetEncryption(value); return *this;} /** *

Encryption configuration for the export job.

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

The unique identifier for the revision associated with this export * request.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

The unique identifier for the revision associated with this export * request.

*/ inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; } /** *

The unique identifier for the revision associated with this export * request.

*/ inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; } /** *

The unique identifier for the revision associated with this export * request.

*/ inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); } /** *

The unique identifier for the revision associated with this export * request.

*/ inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); } /** *

The unique identifier for the revision associated with this export * request.

*/ inline ExportAssetsToS3RequestDetails& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

The unique identifier for the revision associated with this export * request.

*/ inline ExportAssetsToS3RequestDetails& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

The unique identifier for the revision associated with this export * request.

*/ inline ExportAssetsToS3RequestDetails& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} private: Aws::Vector m_assetDestinations; bool m_assetDestinationsHasBeenSet = false; Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet = false; ExportServerSideEncryption m_encryption; bool m_encryptionHasBeenSet = false; Aws::String m_revisionId; bool m_revisionIdHasBeenSet = false; }; } // namespace Model } // namespace DataExchange } // namespace Aws