/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace QuickSight
{
namespace Model
{
/**
* Controls how a specific DataSet
resource is parameterized in the
* returned CloudFormation template.
See Also:
AWS
* API Reference
*/
class AssetBundleExportJobDataSetOverrideProperties
{
public:
AWS_QUICKSIGHT_API AssetBundleExportJobDataSetOverrideProperties();
AWS_QUICKSIGHT_API AssetBundleExportJobDataSetOverrideProperties(Aws::Utils::Json::JsonView jsonValue);
AWS_QUICKSIGHT_API AssetBundleExportJobDataSetOverrideProperties& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline AssetBundleExportJobDataSetOverrideProperties& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline AssetBundleExportJobDataSetOverrideProperties& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* The ARN of the specific DataSet
resource whose override
* properties are configured in this structure.
*/
inline AssetBundleExportJobDataSetOverrideProperties& WithArn(const char* value) { SetArn(value); return *this;}
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline const Aws::Vector& GetProperties() const{ return m_properties; }
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline bool PropertiesHasBeenSet() const { return m_propertiesHasBeenSet; }
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline void SetProperties(const Aws::Vector& value) { m_propertiesHasBeenSet = true; m_properties = value; }
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline void SetProperties(Aws::Vector&& value) { m_propertiesHasBeenSet = true; m_properties = std::move(value); }
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline AssetBundleExportJobDataSetOverrideProperties& WithProperties(const Aws::Vector& value) { SetProperties(value); return *this;}
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline AssetBundleExportJobDataSetOverrideProperties& WithProperties(Aws::Vector&& value) { SetProperties(std::move(value)); return *this;}
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline AssetBundleExportJobDataSetOverrideProperties& AddProperties(const AssetBundleExportJobDataSetPropertyToOverride& value) { m_propertiesHasBeenSet = true; m_properties.push_back(value); return *this; }
/**
* A list of DataSet
resource properties to generate variables for
* in the returned CloudFormation template.
*/
inline AssetBundleExportJobDataSetOverrideProperties& AddProperties(AssetBundleExportJobDataSetPropertyToOverride&& value) { m_propertiesHasBeenSet = true; m_properties.push_back(std::move(value)); return *this; }
private:
Aws::String m_arn;
bool m_arnHasBeenSet = false;
Aws::Vector m_properties;
bool m_propertiesHasBeenSet = false;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws