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-medialive/source/model/ListOfferingsRequest.cpp

131 lines
2.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/medialive/model/ListOfferingsRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <aws/core/http/URI.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <utility>
using namespace Aws::MediaLive::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
using namespace Aws::Http;
ListOfferingsRequest::ListOfferingsRequest() :
m_channelClassHasBeenSet(false),
m_channelConfigurationHasBeenSet(false),
m_codecHasBeenSet(false),
m_durationHasBeenSet(false),
m_maxResults(0),
m_maxResultsHasBeenSet(false),
m_maximumBitrateHasBeenSet(false),
m_maximumFramerateHasBeenSet(false),
m_nextTokenHasBeenSet(false),
m_resolutionHasBeenSet(false),
m_resourceTypeHasBeenSet(false),
m_specialFeatureHasBeenSet(false),
m_videoQualityHasBeenSet(false)
{
}
Aws::String ListOfferingsRequest::SerializePayload() const
{
return {};
}
void ListOfferingsRequest::AddQueryStringParameters(URI& uri) const
{
Aws::StringStream ss;
if(m_channelClassHasBeenSet)
{
ss << m_channelClass;
uri.AddQueryStringParameter("channelClass", ss.str());
ss.str("");
}
if(m_channelConfigurationHasBeenSet)
{
ss << m_channelConfiguration;
uri.AddQueryStringParameter("channelConfiguration", ss.str());
ss.str("");
}
if(m_codecHasBeenSet)
{
ss << m_codec;
uri.AddQueryStringParameter("codec", ss.str());
ss.str("");
}
if(m_durationHasBeenSet)
{
ss << m_duration;
uri.AddQueryStringParameter("duration", ss.str());
ss.str("");
}
if(m_maxResultsHasBeenSet)
{
ss << m_maxResults;
uri.AddQueryStringParameter("maxResults", ss.str());
ss.str("");
}
if(m_maximumBitrateHasBeenSet)
{
ss << m_maximumBitrate;
uri.AddQueryStringParameter("maximumBitrate", ss.str());
ss.str("");
}
if(m_maximumFramerateHasBeenSet)
{
ss << m_maximumFramerate;
uri.AddQueryStringParameter("maximumFramerate", ss.str());
ss.str("");
}
if(m_nextTokenHasBeenSet)
{
ss << m_nextToken;
uri.AddQueryStringParameter("nextToken", ss.str());
ss.str("");
}
if(m_resolutionHasBeenSet)
{
ss << m_resolution;
uri.AddQueryStringParameter("resolution", ss.str());
ss.str("");
}
if(m_resourceTypeHasBeenSet)
{
ss << m_resourceType;
uri.AddQueryStringParameter("resourceType", ss.str());
ss.str("");
}
if(m_specialFeatureHasBeenSet)
{
ss << m_specialFeature;
uri.AddQueryStringParameter("specialFeature", ss.str());
ss.str("");
}
if(m_videoQualityHasBeenSet)
{
ss << m_videoQuality;
uri.AddQueryStringParameter("videoQuality", ss.str());
ss.str("");
}
}