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/GetConnectionRequest.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 
GetConnectionRequest()15 GetConnectionRequest::GetConnectionRequest() :
16     m_catalogIdHasBeenSet(false),
17     m_nameHasBeenSet(false),
18     m_hidePassword(false),
19     m_hidePasswordHasBeenSet(false)
20 {
21 }
22 
SerializePayload() const23 Aws::String GetConnectionRequest::SerializePayload() const
24 {
25   JsonValue payload;
26 
27   if(m_catalogIdHasBeenSet)
28   {
29    payload.WithString("CatalogId", m_catalogId);
30 
31   }
32 
33   if(m_nameHasBeenSet)
34   {
35    payload.WithString("Name", m_name);
36 
37   }
38 
39   if(m_hidePasswordHasBeenSet)
40   {
41    payload.WithBool("HidePassword", m_hidePassword);
42 
43   }
44 
45   return payload.View().WriteReadable();
46 }
47 
GetRequestSpecificHeaders() const48 Aws::Http::HeaderValueCollection GetConnectionRequest::GetRequestSpecificHeaders() const
49 {
50   Aws::Http::HeaderValueCollection headers;
51   headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSGlue.GetConnection"));
52   return headers;
53 
54 }
55 
56 
57 
58 
59