/** * 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; SyncDeploymentJobRequest::SyncDeploymentJobRequest() : m_clientRequestToken(Aws::Utils::UUID::RandomUUID()), m_clientRequestTokenHasBeenSet(true), m_fleetHasBeenSet(false) { } Aws::String SyncDeploymentJobRequest::SerializePayload() const { JsonValue payload; if(m_clientRequestTokenHasBeenSet) { payload.WithString("clientRequestToken", m_clientRequestToken); } if(m_fleetHasBeenSet) { payload.WithString("fleet", m_fleet); } return payload.View().WriteReadable(); }