/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The set parameter operation that sets parameters in custom * action.

See Also:

AWS * API Reference

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

The parameter that determines the value configuration.

*/ inline const Aws::Vector& GetParameterValueConfigurations() const{ return m_parameterValueConfigurations; } /** *

The parameter that determines the value configuration.

*/ inline bool ParameterValueConfigurationsHasBeenSet() const { return m_parameterValueConfigurationsHasBeenSet; } /** *

The parameter that determines the value configuration.

*/ inline void SetParameterValueConfigurations(const Aws::Vector& value) { m_parameterValueConfigurationsHasBeenSet = true; m_parameterValueConfigurations = value; } /** *

The parameter that determines the value configuration.

*/ inline void SetParameterValueConfigurations(Aws::Vector&& value) { m_parameterValueConfigurationsHasBeenSet = true; m_parameterValueConfigurations = std::move(value); } /** *

The parameter that determines the value configuration.

*/ inline CustomActionSetParametersOperation& WithParameterValueConfigurations(const Aws::Vector& value) { SetParameterValueConfigurations(value); return *this;} /** *

The parameter that determines the value configuration.

*/ inline CustomActionSetParametersOperation& WithParameterValueConfigurations(Aws::Vector&& value) { SetParameterValueConfigurations(std::move(value)); return *this;} /** *

The parameter that determines the value configuration.

*/ inline CustomActionSetParametersOperation& AddParameterValueConfigurations(const SetParameterValueConfiguration& value) { m_parameterValueConfigurationsHasBeenSet = true; m_parameterValueConfigurations.push_back(value); return *this; } /** *

The parameter that determines the value configuration.

*/ inline CustomActionSetParametersOperation& AddParameterValueConfigurations(SetParameterValueConfiguration&& value) { m_parameterValueConfigurationsHasBeenSet = true; m_parameterValueConfigurations.push_back(std::move(value)); return *this; } private: Aws::Vector m_parameterValueConfigurations; bool m_parameterValueConfigurationsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws