/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Athena::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateNotebookMetadataRequest::UpdateNotebookMetadataRequest() : m_notebookIdHasBeenSet(false), m_clientRequestTokenHasBeenSet(false), m_nameHasBeenSet(false) { } Aws::String UpdateNotebookMetadataRequest::SerializePayload() const { JsonValue payload; if(m_notebookIdHasBeenSet) { payload.WithString("NotebookId", m_notebookId); } if(m_clientRequestTokenHasBeenSet) { payload.WithString("ClientRequestToken", m_clientRequestToken); } if(m_nameHasBeenSet) { payload.WithString("Name", m_name); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection UpdateNotebookMetadataRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AmazonAthena.UpdateNotebookMetadata")); return headers; }