/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::MediaLive::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateChannelRequest::UpdateChannelRequest() : m_cdiInputSpecificationHasBeenSet(false), m_channelIdHasBeenSet(false), m_destinationsHasBeenSet(false), m_encoderSettingsHasBeenSet(false), m_inputAttachmentsHasBeenSet(false), m_inputSpecificationHasBeenSet(false), m_logLevel(LogLevel::NOT_SET), m_logLevelHasBeenSet(false), m_maintenanceHasBeenSet(false), m_nameHasBeenSet(false), m_roleArnHasBeenSet(false) { } Aws::String UpdateChannelRequest::SerializePayload() const { JsonValue payload; if(m_cdiInputSpecificationHasBeenSet) { payload.WithObject("cdiInputSpecification", m_cdiInputSpecification.Jsonize()); } if(m_destinationsHasBeenSet) { Aws::Utils::Array 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) { Aws::Utils::Array 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_maintenanceHasBeenSet) { payload.WithObject("maintenance", m_maintenance.Jsonize()); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_roleArnHasBeenSet) { payload.WithString("roleArn", m_roleArn); } return payload.View().WriteReadable(); }