1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #include <aws/glue/model/GetBlueprintRunRequest.h> 7 #include <aws/core/utils/json/JsonSerializer.h> 8 9 #include <utility> 10 11 using namespace Aws::Glue::Model; 12 using namespace Aws::Utils::Json; 13 using namespace Aws::Utils; 14 GetBlueprintRunRequest()15GetBlueprintRunRequest::GetBlueprintRunRequest() : 16 m_blueprintNameHasBeenSet(false), 17 m_runIdHasBeenSet(false) 18 { 19 } 20 SerializePayload() const21Aws::String GetBlueprintRunRequest::SerializePayload() const 22 { 23 JsonValue payload; 24 25 if(m_blueprintNameHasBeenSet) 26 { 27 payload.WithString("BlueprintName", m_blueprintName); 28 29 } 30 31 if(m_runIdHasBeenSet) 32 { 33 payload.WithString("RunId", m_runId); 34 35 } 36 37 return payload.View().WriteReadable(); 38 } 39 GetRequestSpecificHeaders() const40Aws::Http::HeaderValueCollection GetBlueprintRunRequest::GetRequestSpecificHeaders() const 41 { 42 Aws::Http::HeaderValueCollection headers; 43 headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSGlue.GetBlueprintRun")); 44 return headers; 45 46 } 47 48 49 50 51