/** * 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 configuration for * CustomActionNavigationOperation.

See Also:

AWS * API Reference

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

The sheet that is targeted for navigation in the same analysis.

*/ inline const Aws::String& GetTargetSheetId() const{ return m_targetSheetId; } /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline bool TargetSheetIdHasBeenSet() const { return m_targetSheetIdHasBeenSet; } /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline void SetTargetSheetId(const Aws::String& value) { m_targetSheetIdHasBeenSet = true; m_targetSheetId = value; } /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline void SetTargetSheetId(Aws::String&& value) { m_targetSheetIdHasBeenSet = true; m_targetSheetId = std::move(value); } /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline void SetTargetSheetId(const char* value) { m_targetSheetIdHasBeenSet = true; m_targetSheetId.assign(value); } /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline LocalNavigationConfiguration& WithTargetSheetId(const Aws::String& value) { SetTargetSheetId(value); return *this;} /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline LocalNavigationConfiguration& WithTargetSheetId(Aws::String&& value) { SetTargetSheetId(std::move(value)); return *this;} /** *

The sheet that is targeted for navigation in the same analysis.

*/ inline LocalNavigationConfiguration& WithTargetSheetId(const char* value) { SetTargetSheetId(value); return *this;} private: Aws::String m_targetSheetId; bool m_targetSheetIdHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws