This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-quicksight/include/aws/quicksight/model/DataSetConfiguration.h

170 lines
5.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/quicksight/model/DataSetSchema.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/quicksight/model/ColumnGroupSchema.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace QuickSight
{
namespace Model
{
/**
* <p>Dataset configuration.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetConfiguration">AWS
* API Reference</a></p>
*/
class AWS_QUICKSIGHT_API DataSetConfiguration
{
public:
DataSetConfiguration();
DataSetConfiguration(Aws::Utils::Json::JsonView jsonValue);
DataSetConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Placeholder.</p>
*/
inline const Aws::String& GetPlaceholder() const{ return m_placeholder; }
/**
* <p>Placeholder.</p>
*/
inline bool PlaceholderHasBeenSet() const { return m_placeholderHasBeenSet; }
/**
* <p>Placeholder.</p>
*/
inline void SetPlaceholder(const Aws::String& value) { m_placeholderHasBeenSet = true; m_placeholder = value; }
/**
* <p>Placeholder.</p>
*/
inline void SetPlaceholder(Aws::String&& value) { m_placeholderHasBeenSet = true; m_placeholder = std::move(value); }
/**
* <p>Placeholder.</p>
*/
inline void SetPlaceholder(const char* value) { m_placeholderHasBeenSet = true; m_placeholder.assign(value); }
/**
* <p>Placeholder.</p>
*/
inline DataSetConfiguration& WithPlaceholder(const Aws::String& value) { SetPlaceholder(value); return *this;}
/**
* <p>Placeholder.</p>
*/
inline DataSetConfiguration& WithPlaceholder(Aws::String&& value) { SetPlaceholder(std::move(value)); return *this;}
/**
* <p>Placeholder.</p>
*/
inline DataSetConfiguration& WithPlaceholder(const char* value) { SetPlaceholder(value); return *this;}
/**
* <p>Dataset schema.</p>
*/
inline const DataSetSchema& GetDataSetSchema() const{ return m_dataSetSchema; }
/**
* <p>Dataset schema.</p>
*/
inline bool DataSetSchemaHasBeenSet() const { return m_dataSetSchemaHasBeenSet; }
/**
* <p>Dataset schema.</p>
*/
inline void SetDataSetSchema(const DataSetSchema& value) { m_dataSetSchemaHasBeenSet = true; m_dataSetSchema = value; }
/**
* <p>Dataset schema.</p>
*/
inline void SetDataSetSchema(DataSetSchema&& value) { m_dataSetSchemaHasBeenSet = true; m_dataSetSchema = std::move(value); }
/**
* <p>Dataset schema.</p>
*/
inline DataSetConfiguration& WithDataSetSchema(const DataSetSchema& value) { SetDataSetSchema(value); return *this;}
/**
* <p>Dataset schema.</p>
*/
inline DataSetConfiguration& WithDataSetSchema(DataSetSchema&& value) { SetDataSetSchema(std::move(value)); return *this;}
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline const Aws::Vector<ColumnGroupSchema>& GetColumnGroupSchemaList() const{ return m_columnGroupSchemaList; }
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline bool ColumnGroupSchemaListHasBeenSet() const { return m_columnGroupSchemaListHasBeenSet; }
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline void SetColumnGroupSchemaList(const Aws::Vector<ColumnGroupSchema>& value) { m_columnGroupSchemaListHasBeenSet = true; m_columnGroupSchemaList = value; }
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline void SetColumnGroupSchemaList(Aws::Vector<ColumnGroupSchema>&& value) { m_columnGroupSchemaListHasBeenSet = true; m_columnGroupSchemaList = std::move(value); }
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline DataSetConfiguration& WithColumnGroupSchemaList(const Aws::Vector<ColumnGroupSchema>& value) { SetColumnGroupSchemaList(value); return *this;}
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline DataSetConfiguration& WithColumnGroupSchemaList(Aws::Vector<ColumnGroupSchema>&& value) { SetColumnGroupSchemaList(std::move(value)); return *this;}
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline DataSetConfiguration& AddColumnGroupSchemaList(const ColumnGroupSchema& value) { m_columnGroupSchemaListHasBeenSet = true; m_columnGroupSchemaList.push_back(value); return *this; }
/**
* <p>A structure containing the list of column group schemas.</p>
*/
inline DataSetConfiguration& AddColumnGroupSchemaList(ColumnGroupSchema&& value) { m_columnGroupSchemaListHasBeenSet = true; m_columnGroupSchemaList.push_back(std::move(value)); return *this; }
private:
Aws::String m_placeholder;
bool m_placeholderHasBeenSet;
DataSetSchema m_dataSetSchema;
bool m_dataSetSchemaHasBeenSet;
Aws::Vector<ColumnGroupSchema> m_columnGroupSchemaList;
bool m_columnGroupSchemaListHasBeenSet;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws