89 lines
2.2 KiB
C++
89 lines
2.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/medialive/model/UpdateChannelRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::MediaLive::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
UpdateChannelRequest::UpdateChannelRequest() :
|
|
m_channelIdHasBeenSet(false),
|
|
m_destinationsHasBeenSet(false),
|
|
m_encoderSettingsHasBeenSet(false),
|
|
m_inputAttachmentsHasBeenSet(false),
|
|
m_inputSpecificationHasBeenSet(false),
|
|
m_logLevel(LogLevel::NOT_SET),
|
|
m_logLevelHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_roleArnHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String UpdateChannelRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_destinationsHasBeenSet)
|
|
{
|
|
Array<JsonValue> destinationsJsonList(m_destinations.size());
|
|
for(unsigned destinationsIndex = 0; destinationsIndex < destinationsJsonList.GetLength(); ++destinationsIndex)
|
|
{
|
|
destinationsJsonList[destinationsIndex].AsObject(m_destinations[destinationsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("destinations", std::move(destinationsJsonList));
|
|
|
|
}
|
|
|
|
if(m_encoderSettingsHasBeenSet)
|
|
{
|
|
payload.WithObject("encoderSettings", m_encoderSettings.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_inputAttachmentsHasBeenSet)
|
|
{
|
|
Array<JsonValue> inputAttachmentsJsonList(m_inputAttachments.size());
|
|
for(unsigned inputAttachmentsIndex = 0; inputAttachmentsIndex < inputAttachmentsJsonList.GetLength(); ++inputAttachmentsIndex)
|
|
{
|
|
inputAttachmentsJsonList[inputAttachmentsIndex].AsObject(m_inputAttachments[inputAttachmentsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("inputAttachments", std::move(inputAttachmentsJsonList));
|
|
|
|
}
|
|
|
|
if(m_inputSpecificationHasBeenSet)
|
|
{
|
|
payload.WithObject("inputSpecification", m_inputSpecification.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_logLevelHasBeenSet)
|
|
{
|
|
payload.WithString("logLevel", LogLevelMapper::GetNameForLogLevel(m_logLevel));
|
|
}
|
|
|
|
if(m_nameHasBeenSet)
|
|
{
|
|
payload.WithString("name", m_name);
|
|
|
|
}
|
|
|
|
if(m_roleArnHasBeenSet)
|
|
{
|
|
payload.WithString("roleArn", m_roleArn);
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
|
|
|
|
|