/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DAX { namespace Model { class AWS_DAX_API UpdateParameterGroupResult { public: UpdateParameterGroupResult(); UpdateParameterGroupResult(const Aws::AmazonWebServiceResult& result); UpdateParameterGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The parameter group that has been modified.

*/ inline const ParameterGroup& GetParameterGroup() const{ return m_parameterGroup; } /** *

The parameter group that has been modified.

*/ inline void SetParameterGroup(const ParameterGroup& value) { m_parameterGroup = value; } /** *

The parameter group that has been modified.

*/ inline void SetParameterGroup(ParameterGroup&& value) { m_parameterGroup = std::move(value); } /** *

The parameter group that has been modified.

*/ inline UpdateParameterGroupResult& WithParameterGroup(const ParameterGroup& value) { SetParameterGroup(value); return *this;} /** *

The parameter group that has been modified.

*/ inline UpdateParameterGroupResult& WithParameterGroup(ParameterGroup&& value) { SetParameterGroup(std::move(value)); return *this;} private: ParameterGroup m_parameterGroup; }; } // namespace Model } // namespace DAX } // namespace Aws