42 lines
947 B
C++
42 lines
947 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/importexport/model/CancelJobRequest.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|
|
|
using namespace Aws::ImportExport::Model;
|
|
using namespace Aws::Utils;
|
|
|
|
CancelJobRequest::CancelJobRequest() :
|
|
m_jobIdHasBeenSet(false),
|
|
m_aPIVersionHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CancelJobRequest::SerializePayload() const
|
|
{
|
|
Aws::StringStream ss;
|
|
ss << "Action=CancelJob&";
|
|
if(m_jobIdHasBeenSet)
|
|
{
|
|
ss << "JobId=" << StringUtils::URLEncode(m_jobId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_aPIVersionHasBeenSet)
|
|
{
|
|
ss << "APIVersion=" << StringUtils::URLEncode(m_aPIVersion.c_str()) << "&";
|
|
}
|
|
|
|
ss << "Version=2010-06-01";
|
|
return ss.str();
|
|
}
|
|
|
|
|
|
void CancelJobRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
|
|
{
|
|
uri.SetQueryString(SerializePayload());
|
|
}
|