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