/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::mgn::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; StartImportRequest::StartImportRequest() : m_clientToken(Aws::Utils::UUID::PseudoRandomUUID()), m_clientTokenHasBeenSet(true), m_s3BucketSourceHasBeenSet(false) { } Aws::String StartImportRequest::SerializePayload() const { JsonValue payload; if(m_clientTokenHasBeenSet) { payload.WithString("clientToken", m_clientToken); } if(m_s3BucketSourceHasBeenSet) { payload.WithObject("s3BucketSource", m_s3BucketSource.Jsonize()); } return payload.View().WriteReadable(); }