/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains the options relating to the destination of the import
* request.See Also:
AWS
* API Reference
A map of the column id to the import properties for each column.
*/ inline const Aws::MapA map of the column id to the import properties for each column.
*/ inline bool ColumnMapHasBeenSet() const { return m_columnMapHasBeenSet; } /** *A map of the column id to the import properties for each column.
*/ inline void SetColumnMap(const Aws::MapA map of the column id to the import properties for each column.
*/ inline void SetColumnMap(Aws::MapA map of the column id to the import properties for each column.
*/ inline DestinationOptions& WithColumnMap(const Aws::MapA map of the column id to the import properties for each column.
*/ inline DestinationOptions& WithColumnMap(Aws::MapA map of the column id to the import properties for each column.
*/ inline DestinationOptions& AddColumnMap(const Aws::String& key, const SourceDataColumnProperties& value) { m_columnMapHasBeenSet = true; m_columnMap.emplace(key, value); return *this; } /** *A map of the column id to the import properties for each column.
*/ inline DestinationOptions& AddColumnMap(Aws::String&& key, const SourceDataColumnProperties& value) { m_columnMapHasBeenSet = true; m_columnMap.emplace(std::move(key), value); return *this; } /** *A map of the column id to the import properties for each column.
*/ inline DestinationOptions& AddColumnMap(const Aws::String& key, SourceDataColumnProperties&& value) { m_columnMapHasBeenSet = true; m_columnMap.emplace(key, std::move(value)); return *this; } /** *A map of the column id to the import properties for each column.
*/ inline DestinationOptions& AddColumnMap(Aws::String&& key, SourceDataColumnProperties&& value) { m_columnMapHasBeenSet = true; m_columnMap.emplace(std::move(key), std::move(value)); return *this; } /** *A map of the column id to the import properties for each column.
*/ inline DestinationOptions& AddColumnMap(const char* key, SourceDataColumnProperties&& value) { m_columnMapHasBeenSet = true; m_columnMap.emplace(key, std::move(value)); return *this; } /** *A map of the column id to the import properties for each column.
*/ inline DestinationOptions& AddColumnMap(const char* key, const SourceDataColumnProperties& value) { m_columnMapHasBeenSet = true; m_columnMap.emplace(key, value); return *this; } private: Aws::Map