/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a serialization/deserialization program (SerDe) that serves
* as an extractor and loader.See Also:
AWS API
* Reference
Name of the SerDe.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *Name of the SerDe.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *Name of the SerDe.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *Name of the SerDe.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *Name of the SerDe.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *Name of the SerDe.
*/ inline SerDeInfo& WithName(const Aws::String& value) { SetName(value); return *this;} /** *Name of the SerDe.
*/ inline SerDeInfo& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *Name of the SerDe.
*/ inline SerDeInfo& WithName(const char* value) { SetName(value); return *this;} /** *Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
Usually the class that implements the SerDe. An example is
* org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe
.
These key-value pairs define initialization parameters for the SerDe.
*/ inline const Aws::MapThese key-value pairs define initialization parameters for the SerDe.
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline void SetParameters(const Aws::MapThese key-value pairs define initialization parameters for the SerDe.
*/ inline void SetParameters(Aws::MapThese key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& WithParameters(const Aws::MapThese key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& WithParameters(Aws::MapThese key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(const Aws::String& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(Aws::String&& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(const Aws::String& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(Aws::String&& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), std::move(value)); return *this; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(const char* key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(Aws::String&& key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *These key-value pairs define initialization parameters for the SerDe.
*/ inline SerDeInfo& AddParameters(const char* key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_serializationLibrary; bool m_serializationLibraryHasBeenSet = false; Aws::Map