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

A structure that describes the service configuration attached with the * specified group. For details about the service configuration syntax, see Service * configurations for Resource Groups.

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

A structure that describes the service configuration attached with the * specified group. For details about the service configuration syntax, see Service * configurations for Resource Groups.

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

A structure that describes the service configuration attached with the * specified group. For details about the service configuration syntax, see Service * configurations for Resource Groups.

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

A structure that describes the service configuration attached with the * specified group. For details about the service configuration syntax, see Service * configurations for Resource Groups.

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

A structure that describes the service configuration attached with the * specified group. For details about the service configuration syntax, see Service * configurations for Resource Groups.

*/ inline GetGroupConfigurationResult& WithGroupConfiguration(GroupConfiguration&& value) { SetGroupConfiguration(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetGroupConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetGroupConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetGroupConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: GroupConfiguration m_groupConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace ResourceGroups } // namespace Aws