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

The override parameters for a single dataset that is being * imported.

See Also:

AWS * API Reference

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

The ID of the dataset to apply overrides to.

*/ inline const Aws::String& GetDataSetId() const{ return m_dataSetId; } /** *

The ID of the dataset to apply overrides to.

*/ inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; } /** *

The ID of the dataset to apply overrides to.

*/ inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; } /** *

The ID of the dataset to apply overrides to.

*/ inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); } /** *

The ID of the dataset to apply overrides to.

*/ inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); } /** *

The ID of the dataset to apply overrides to.

*/ inline AssetBundleImportJobDataSetOverrideParameters& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *

The ID of the dataset to apply overrides to.

*/ inline AssetBundleImportJobDataSetOverrideParameters& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;} /** *

The ID of the dataset to apply overrides to.

*/ inline AssetBundleImportJobDataSetOverrideParameters& WithDataSetId(const char* value) { SetDataSetId(value); return *this;} /** *

A new name for the dataset.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

A new name for the dataset.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

A new name for the dataset.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

A new name for the dataset.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

A new name for the dataset.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

A new name for the dataset.

*/ inline AssetBundleImportJobDataSetOverrideParameters& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

A new name for the dataset.

*/ inline AssetBundleImportJobDataSetOverrideParameters& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

A new name for the dataset.

*/ inline AssetBundleImportJobDataSetOverrideParameters& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws