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

The group that was requested. Contains the name of the group, the ARN of the * group, and the filter expression that assigned to the group.

*/ inline const Group& GetGroup() const{ return m_group; } /** *

The group that was requested. Contains the name of the group, the ARN of the * group, and the filter expression that assigned to the group.

*/ inline void SetGroup(const Group& value) { m_group = value; } /** *

The group that was requested. Contains the name of the group, the ARN of the * group, and the filter expression that assigned to the group.

*/ inline void SetGroup(Group&& value) { m_group = std::move(value); } /** *

The group that was requested. Contains the name of the group, the ARN of the * group, and the filter expression that assigned to the group.

*/ inline GetGroupResult& WithGroup(const Group& value) { SetGroup(value); return *this;} /** *

The group that was requested. Contains the name of the group, the ARN of the * group, and the filter expression that assigned to the group.

*/ inline GetGroupResult& WithGroup(Group&& value) { SetGroup(std::move(value)); return *this;} private: Group m_group; }; } // namespace Model } // namespace XRay } // namespace Aws