1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/swf/model/UndeprecateDomainRequest.h>
7 #include <aws/core/utils/json/JsonSerializer.h>
8 
9 #include <utility>
10 
11 using namespace Aws::SWF::Model;
12 using namespace Aws::Utils::Json;
13 using namespace Aws::Utils;
14 
UndeprecateDomainRequest()15 UndeprecateDomainRequest::UndeprecateDomainRequest() :
16     m_nameHasBeenSet(false)
17 {
18 }
19 
SerializePayload() const20 Aws::String UndeprecateDomainRequest::SerializePayload() const
21 {
22   JsonValue payload;
23 
24   if(m_nameHasBeenSet)
25   {
26    payload.WithString("name", m_name);
27 
28   }
29 
30   return payload.View().WriteReadable();
31 }
32 
GetRequestSpecificHeaders() const33 Aws::Http::HeaderValueCollection UndeprecateDomainRequest::GetRequestSpecificHeaders() const
34 {
35   Aws::Http::HeaderValueCollection headers;
36   headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "SimpleWorkflowService.UndeprecateDomain"));
37   return headers;
38 
39 }
40 
41 
42 
43 
44