/** * 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 { /** *

An optional structure that configures resource ID overrides for the import * job.

See Also:

AWS * API Reference

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

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline const Aws::String& GetPrefixForAllResources() const{ return m_prefixForAllResources; } /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline bool PrefixForAllResourcesHasBeenSet() const { return m_prefixForAllResourcesHasBeenSet; } /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline void SetPrefixForAllResources(const Aws::String& value) { m_prefixForAllResourcesHasBeenSet = true; m_prefixForAllResources = value; } /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline void SetPrefixForAllResources(Aws::String&& value) { m_prefixForAllResourcesHasBeenSet = true; m_prefixForAllResources = std::move(value); } /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline void SetPrefixForAllResources(const char* value) { m_prefixForAllResourcesHasBeenSet = true; m_prefixForAllResources.assign(value); } /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline AssetBundleImportJobResourceIdOverrideConfiguration& WithPrefixForAllResources(const Aws::String& value) { SetPrefixForAllResources(value); return *this;} /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline AssetBundleImportJobResourceIdOverrideConfiguration& WithPrefixForAllResources(Aws::String&& value) { SetPrefixForAllResources(std::move(value)); return *this;} /** *

An option to request a CloudFormation variable for a prefix to be prepended * to each resource's ID before import. The prefix is only added to the asset IDs * and does not change the name of the asset.

*/ inline AssetBundleImportJobResourceIdOverrideConfiguration& WithPrefixForAllResources(const char* value) { SetPrefixForAllResources(value); return *this;} private: Aws::String m_prefixForAllResources; bool m_prefixForAllResourcesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws