This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-logs/source/model/GetLogEventsRequest.cpp

90 lines
1.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/logs/model/GetLogEventsRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::CloudWatchLogs::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
GetLogEventsRequest::GetLogEventsRequest() :
m_logGroupNameHasBeenSet(false),
m_logStreamNameHasBeenSet(false),
m_startTime(0),
m_startTimeHasBeenSet(false),
m_endTime(0),
m_endTimeHasBeenSet(false),
m_nextTokenHasBeenSet(false),
m_limit(0),
m_limitHasBeenSet(false),
m_startFromHead(false),
m_startFromHeadHasBeenSet(false)
{
}
Aws::String GetLogEventsRequest::SerializePayload() const
{
JsonValue payload;
if(m_logGroupNameHasBeenSet)
{
payload.WithString("logGroupName", m_logGroupName);
}
if(m_logStreamNameHasBeenSet)
{
payload.WithString("logStreamName", m_logStreamName);
}
if(m_startTimeHasBeenSet)
{
payload.WithInt64("startTime", m_startTime);
}
if(m_endTimeHasBeenSet)
{
payload.WithInt64("endTime", m_endTime);
}
if(m_nextTokenHasBeenSet)
{
payload.WithString("nextToken", m_nextToken);
}
if(m_limitHasBeenSet)
{
payload.WithInteger("limit", m_limit);
}
if(m_startFromHeadHasBeenSet)
{
payload.WithBool("startFromHead", m_startFromHead);
}
return payload.View().WriteReadable();
}
Aws::Http::HeaderValueCollection GetLogEventsRequest::GetRequestSpecificHeaders() const
{
Aws::Http::HeaderValueCollection headers;
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "Logs_20140328.GetLogEvents"));
return headers;
}