/** * 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 ResourceGroups { namespace Model { class AWS_RESOURCEGROUPS_API GetGroupConfigurationResult { public: GetGroupConfigurationResult(); GetGroupConfigurationResult(const Aws::AmazonWebServiceResult& result); GetGroupConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The configuration associated with the specified group.

*/ inline const GroupConfiguration& GetGroupConfiguration() const{ return m_groupConfiguration; } /** *

The configuration associated with the specified group.

*/ inline void SetGroupConfiguration(const GroupConfiguration& value) { m_groupConfiguration = value; } /** *

The configuration associated with the specified group.

*/ inline void SetGroupConfiguration(GroupConfiguration&& value) { m_groupConfiguration = std::move(value); } /** *

The configuration associated with the specified group.

*/ inline GetGroupConfigurationResult& WithGroupConfiguration(const GroupConfiguration& value) { SetGroupConfiguration(value); return *this;} /** *

The configuration associated with the specified group.

*/ inline GetGroupConfigurationResult& WithGroupConfiguration(GroupConfiguration&& value) { SetGroupConfiguration(std::move(value)); return *this;} private: GroupConfiguration m_groupConfiguration; }; } // namespace Model } // namespace ResourceGroups } // namespace Aws