/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The column group schema.See Also:
AWS
* API Reference
The name of the column group schema.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the column group schema.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the column group schema.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the column group schema.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the column group schema.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the column group schema.
*/ inline ColumnGroupSchema& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the column group schema.
*/ inline ColumnGroupSchema& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the column group schema.
*/ inline ColumnGroupSchema& WithName(const char* value) { SetName(value); return *this;} /** *A structure containing the list of schemas for column group columns.
*/ inline const Aws::VectorA structure containing the list of schemas for column group columns.
*/ inline bool ColumnGroupColumnSchemaListHasBeenSet() const { return m_columnGroupColumnSchemaListHasBeenSet; } /** *A structure containing the list of schemas for column group columns.
*/ inline void SetColumnGroupColumnSchemaList(const Aws::VectorA structure containing the list of schemas for column group columns.
*/ inline void SetColumnGroupColumnSchemaList(Aws::VectorA structure containing the list of schemas for column group columns.
*/ inline ColumnGroupSchema& WithColumnGroupColumnSchemaList(const Aws::VectorA structure containing the list of schemas for column group columns.
*/ inline ColumnGroupSchema& WithColumnGroupColumnSchemaList(Aws::VectorA structure containing the list of schemas for column group columns.
*/ inline ColumnGroupSchema& AddColumnGroupColumnSchemaList(const ColumnGroupColumnSchema& value) { m_columnGroupColumnSchemaListHasBeenSet = true; m_columnGroupColumnSchemaList.push_back(value); return *this; } /** *A structure containing the list of schemas for column group columns.
*/ inline ColumnGroupSchema& AddColumnGroupColumnSchemaList(ColumnGroupColumnSchema&& value) { m_columnGroupColumnSchemaListHasBeenSet = true; m_columnGroupColumnSchemaList.push_back(std::move(value)); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Vector