/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The navigation operation that navigates between different sheets in the same
* analysis. This is a union type structure. For this structure to be valid,
* only one of the attributes can be defined.See Also:
AWS
* API Reference
The configuration that chooses the navigation target.
*/ inline const LocalNavigationConfiguration& GetLocalNavigationConfiguration() const{ return m_localNavigationConfiguration; } /** *The configuration that chooses the navigation target.
*/ inline bool LocalNavigationConfigurationHasBeenSet() const { return m_localNavigationConfigurationHasBeenSet; } /** *The configuration that chooses the navigation target.
*/ inline void SetLocalNavigationConfiguration(const LocalNavigationConfiguration& value) { m_localNavigationConfigurationHasBeenSet = true; m_localNavigationConfiguration = value; } /** *The configuration that chooses the navigation target.
*/ inline void SetLocalNavigationConfiguration(LocalNavigationConfiguration&& value) { m_localNavigationConfigurationHasBeenSet = true; m_localNavigationConfiguration = std::move(value); } /** *The configuration that chooses the navigation target.
*/ inline CustomActionNavigationOperation& WithLocalNavigationConfiguration(const LocalNavigationConfiguration& value) { SetLocalNavigationConfiguration(value); return *this;} /** *The configuration that chooses the navigation target.
*/ inline CustomActionNavigationOperation& WithLocalNavigationConfiguration(LocalNavigationConfiguration&& value) { SetLocalNavigationConfiguration(std::move(value)); return *this;} private: LocalNavigationConfiguration m_localNavigationConfiguration; bool m_localNavigationConfigurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws