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-importexport/source/model/CreateJobRequest.cpp

62 lines
1.5 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/importexport/model/CreateJobRequest.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
using namespace Aws::ImportExport::Model;
using namespace Aws::Utils;
CreateJobRequest::CreateJobRequest() :
m_jobType(JobType::NOT_SET),
m_jobTypeHasBeenSet(false),
m_manifestHasBeenSet(false),
m_manifestAddendumHasBeenSet(false),
m_validateOnly(false),
m_validateOnlyHasBeenSet(false),
m_aPIVersionHasBeenSet(false)
{
}
Aws::String CreateJobRequest::SerializePayload() const
{
Aws::StringStream ss;
ss << "Action=CreateJob&";
if(m_jobTypeHasBeenSet)
{
ss << "JobType=" << JobTypeMapper::GetNameForJobType(m_jobType) << "&";
}
if(m_manifestHasBeenSet)
{
ss << "Manifest=" << StringUtils::URLEncode(m_manifest.c_str()) << "&";
}
if(m_manifestAddendumHasBeenSet)
{
ss << "ManifestAddendum=" << StringUtils::URLEncode(m_manifestAddendum.c_str()) << "&";
}
if(m_validateOnlyHasBeenSet)
{
ss << "ValidateOnly=" << std::boolalpha << m_validateOnly << "&";
}
if(m_aPIVersionHasBeenSet)
{
ss << "APIVersion=" << StringUtils::URLEncode(m_aPIVersion.c_str()) << "&";
}
ss << "Version=2010-06-01";
return ss.str();
}
void CreateJobRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
{
uri.SetQueryString(SerializePayload());
}