/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

Dataset schema.

See Also:

AWS * API Reference

*/ class DataSetSchema { public: AWS_QUICKSIGHT_API DataSetSchema(); AWS_QUICKSIGHT_API DataSetSchema(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API DataSetSchema& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

A structure containing the list of column schemas.

*/ inline const Aws::Vector& GetColumnSchemaList() const{ return m_columnSchemaList; } /** *

A structure containing the list of column schemas.

*/ inline bool ColumnSchemaListHasBeenSet() const { return m_columnSchemaListHasBeenSet; } /** *

A structure containing the list of column schemas.

*/ inline void SetColumnSchemaList(const Aws::Vector& value) { m_columnSchemaListHasBeenSet = true; m_columnSchemaList = value; } /** *

A structure containing the list of column schemas.

*/ inline void SetColumnSchemaList(Aws::Vector&& value) { m_columnSchemaListHasBeenSet = true; m_columnSchemaList = std::move(value); } /** *

A structure containing the list of column schemas.

*/ inline DataSetSchema& WithColumnSchemaList(const Aws::Vector& value) { SetColumnSchemaList(value); return *this;} /** *

A structure containing the list of column schemas.

*/ inline DataSetSchema& WithColumnSchemaList(Aws::Vector&& value) { SetColumnSchemaList(std::move(value)); return *this;} /** *

A structure containing the list of column schemas.

*/ inline DataSetSchema& AddColumnSchemaList(const ColumnSchema& value) { m_columnSchemaListHasBeenSet = true; m_columnSchemaList.push_back(value); return *this; } /** *

A structure containing the list of column schemas.

*/ inline DataSetSchema& AddColumnSchemaList(ColumnSchema&& value) { m_columnSchemaListHasBeenSet = true; m_columnSchemaList.push_back(std::move(value)); return *this; } private: Aws::Vector m_columnSchemaList; bool m_columnSchemaListHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws