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

See Also:

AWS * API Reference

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline AssetBundleExportJobThemeOverrideProperties& AddProperties(AssetBundleExportJobThemePropertyToOverride&& 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