/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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; }