/** * 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 UpdateGroupResult { public: UpdateGroupResult(); UpdateGroupResult(const Aws::AmazonWebServiceResult& result); UpdateGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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

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

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

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

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

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

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

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

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

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