43 lines
737 B
C++
43 lines
737 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/xray/model/GetGroupRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
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();
|
|
}
|
|
|
|
|
|
|
|
|