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

See Also:

* AWS * API Reference

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline AssetBundleExportJobRefreshScheduleOverrideProperties& AddProperties(AssetBundleExportJobRefreshSchedulePropertyToOverride&& 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