/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::XRay::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; GetGroupRequest::GetGroupRequest() : m_groupNameHasBeenSet(false), m_groupARNHasBeenSet(false) { } Aws::String GetGroupRequest::SerializePayload() const { JsonValue payload; if(m_groupNameHasBeenSet) { payload.WithString("GroupName", m_groupName); } if(m_groupARNHasBeenSet) { payload.WithString("GroupARN", m_groupARN); } return payload.View().WriteReadable(); }