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-lightsail/source/model/StopInstanceRequest.cpp

52 lines
1.0 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/lightsail/model/StopInstanceRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Lightsail::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
StopInstanceRequest::StopInstanceRequest() :
m_instanceNameHasBeenSet(false),
m_force(false),
m_forceHasBeenSet(false)
{
}
Aws::String StopInstanceRequest::SerializePayload() const
{
JsonValue payload;
if(m_instanceNameHasBeenSet)
{
payload.WithString("instanceName", m_instanceName);
}
if(m_forceHasBeenSet)
{
payload.WithBool("force", m_force);
}
return payload.View().WriteReadable();
}
Aws::Http::HeaderValueCollection StopInstanceRequest::GetRequestSpecificHeaders() const
{
Aws::Http::HeaderValueCollection headers;
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "Lightsail_20161128.StopInstance"));
return headers;
}