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

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

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

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