1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/elasticfilesystem/model/RootDirectory.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 EFS
17 {
18 namespace Model
19 {
20 
RootDirectory()21 RootDirectory::RootDirectory() :
22     m_pathHasBeenSet(false),
23     m_creationInfoHasBeenSet(false)
24 {
25 }
26 
RootDirectory(JsonView jsonValue)27 RootDirectory::RootDirectory(JsonView jsonValue) :
28     m_pathHasBeenSet(false),
29     m_creationInfoHasBeenSet(false)
30 {
31   *this = jsonValue;
32 }
33 
operator =(JsonView jsonValue)34 RootDirectory& RootDirectory::operator =(JsonView jsonValue)
35 {
36   if(jsonValue.ValueExists("Path"))
37   {
38     m_path = jsonValue.GetString("Path");
39 
40     m_pathHasBeenSet = true;
41   }
42 
43   if(jsonValue.ValueExists("CreationInfo"))
44   {
45     m_creationInfo = jsonValue.GetObject("CreationInfo");
46 
47     m_creationInfoHasBeenSet = true;
48   }
49 
50   return *this;
51 }
52 
Jsonize() const53 JsonValue RootDirectory::Jsonize() const
54 {
55   JsonValue payload;
56 
57   if(m_pathHasBeenSet)
58   {
59    payload.WithString("Path", m_path);
60 
61   }
62 
63   if(m_creationInfoHasBeenSet)
64   {
65    payload.WithObject("CreationInfo", m_creationInfo.Jsonize());
66 
67   }
68 
69   return payload;
70 }
71 
72 } // namespace Model
73 } // namespace EFS
74 } // namespace Aws
75