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/UpdateXMLClassifierRequest.h>
7 #include <aws/core/utils/json/JsonSerializer.h>
8 
9 #include <utility>
10 
11 using namespace Aws::Utils::Json;
12 using namespace Aws::Utils;
13 
14 namespace Aws
15 {
16 namespace Glue
17 {
18 namespace Model
19 {
20 
UpdateXMLClassifierRequest()21 UpdateXMLClassifierRequest::UpdateXMLClassifierRequest() :
22     m_nameHasBeenSet(false),
23     m_classificationHasBeenSet(false),
24     m_rowTagHasBeenSet(false)
25 {
26 }
27 
UpdateXMLClassifierRequest(JsonView jsonValue)28 UpdateXMLClassifierRequest::UpdateXMLClassifierRequest(JsonView jsonValue) :
29     m_nameHasBeenSet(false),
30     m_classificationHasBeenSet(false),
31     m_rowTagHasBeenSet(false)
32 {
33   *this = jsonValue;
34 }
35 
operator =(JsonView jsonValue)36 UpdateXMLClassifierRequest& UpdateXMLClassifierRequest::operator =(JsonView jsonValue)
37 {
38   if(jsonValue.ValueExists("Name"))
39   {
40     m_name = jsonValue.GetString("Name");
41 
42     m_nameHasBeenSet = true;
43   }
44 
45   if(jsonValue.ValueExists("Classification"))
46   {
47     m_classification = jsonValue.GetString("Classification");
48 
49     m_classificationHasBeenSet = true;
50   }
51 
52   if(jsonValue.ValueExists("RowTag"))
53   {
54     m_rowTag = jsonValue.GetString("RowTag");
55 
56     m_rowTagHasBeenSet = true;
57   }
58 
59   return *this;
60 }
61 
Jsonize() const62 JsonValue UpdateXMLClassifierRequest::Jsonize() const
63 {
64   JsonValue payload;
65 
66   if(m_nameHasBeenSet)
67   {
68    payload.WithString("Name", m_name);
69 
70   }
71 
72   if(m_classificationHasBeenSet)
73   {
74    payload.WithString("Classification", m_classification);
75 
76   }
77 
78   if(m_rowTagHasBeenSet)
79   {
80    payload.WithString("RowTag", m_rowTag);
81 
82   }
83 
84   return payload;
85 }
86 
87 } // namespace Model
88 } // namespace Glue
89 } // namespace Aws
90