/** * 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 Dashboard resource is parameterized in * the returned CloudFormation template.

See Also:

AWS * API Reference

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

The ARN of the specific Dashboard resource whose override * properties are configured in this structure.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The ARN of the specific Dashboard resource whose override * properties are configured in this structure.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The ARN of the specific Dashboard 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 Dashboard 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 Dashboard 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 Dashboard resource whose override * properties are configured in this structure.

*/ inline AssetBundleExportJobDashboardOverrideProperties& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The ARN of the specific Dashboard resource whose override * properties are configured in this structure.

*/ inline AssetBundleExportJobDashboardOverrideProperties& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The ARN of the specific Dashboard resource whose override * properties are configured in this structure.

*/ inline AssetBundleExportJobDashboardOverrideProperties& WithArn(const char* value) { SetArn(value); return *this;} /** *

A list of Dashboard resource properties to generate variables * for in the returned CloudFormation template.

*/ inline const Aws::Vector& GetProperties() const{ return m_properties; } /** *

A list of Dashboard resource properties to generate variables * for in the returned CloudFormation template.

*/ inline bool PropertiesHasBeenSet() const { return m_propertiesHasBeenSet; } /** *

A list of Dashboard 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 Dashboard 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 Dashboard resource properties to generate variables * for in the returned CloudFormation template.

*/ inline AssetBundleExportJobDashboardOverrideProperties& WithProperties(const Aws::Vector& value) { SetProperties(value); return *this;} /** *

A list of Dashboard resource properties to generate variables * for in the returned CloudFormation template.

*/ inline AssetBundleExportJobDashboardOverrideProperties& WithProperties(Aws::Vector&& value) { SetProperties(std::move(value)); return *this;} /** *

A list of Dashboard resource properties to generate variables * for in the returned CloudFormation template.

*/ inline AssetBundleExportJobDashboardOverrideProperties& AddProperties(const AssetBundleExportJobDashboardPropertyToOverride& value) { m_propertiesHasBeenSet = true; m_properties.push_back(value); return *this; } /** *

A list of Dashboard resource properties to generate variables * for in the returned CloudFormation template.

*/ inline AssetBundleExportJobDashboardOverrideProperties& AddProperties(AssetBundleExportJobDashboardPropertyToOverride&& 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