/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An optional structure that configures resource ID overrides for the export
* job.See Also:
AWS
* API Reference
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 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(bool 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 AssetBundleExportJobResourceIdOverrideConfiguration& WithPrefixForAllResources(bool value) { SetPrefixForAllResources(value); return *this;} private: bool m_prefixForAllResources; bool m_prefixForAllResourcesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws