/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::RoboMaker::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateSimulationApplicationRequest::UpdateSimulationApplicationRequest() : m_applicationHasBeenSet(false), m_sourcesHasBeenSet(false), m_simulationSoftwareSuiteHasBeenSet(false), m_robotSoftwareSuiteHasBeenSet(false), m_renderingEngineHasBeenSet(false), m_currentRevisionIdHasBeenSet(false), m_environmentHasBeenSet(false) { } Aws::String UpdateSimulationApplicationRequest::SerializePayload() const { JsonValue payload; if(m_applicationHasBeenSet) { payload.WithString("application", m_application); } if(m_sourcesHasBeenSet) { Aws::Utils::Array sourcesJsonList(m_sources.size()); for(unsigned sourcesIndex = 0; sourcesIndex < sourcesJsonList.GetLength(); ++sourcesIndex) { sourcesJsonList[sourcesIndex].AsObject(m_sources[sourcesIndex].Jsonize()); } payload.WithArray("sources", std::move(sourcesJsonList)); } if(m_simulationSoftwareSuiteHasBeenSet) { payload.WithObject("simulationSoftwareSuite", m_simulationSoftwareSuite.Jsonize()); } if(m_robotSoftwareSuiteHasBeenSet) { payload.WithObject("robotSoftwareSuite", m_robotSoftwareSuite.Jsonize()); } if(m_renderingEngineHasBeenSet) { payload.WithObject("renderingEngine", m_renderingEngine.Jsonize()); } if(m_currentRevisionIdHasBeenSet) { payload.WithString("currentRevisionId", m_currentRevisionId); } if(m_environmentHasBeenSet) { payload.WithObject("environment", m_environment.Jsonize()); } return payload.View().WriteReadable(); }