1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/accessanalyzer/model/InternetConfiguration.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 AccessAnalyzer
17 {
18 namespace Model
19 {
20 
InternetConfiguration()21 InternetConfiguration::InternetConfiguration()
22 {
23 }
24 
InternetConfiguration(JsonView jsonValue)25 InternetConfiguration::InternetConfiguration(JsonView jsonValue)
26 {
27   *this = jsonValue;
28 }
29 
operator =(JsonView jsonValue)30 InternetConfiguration& InternetConfiguration::operator =(JsonView jsonValue)
31 {
32   AWS_UNREFERENCED_PARAM(jsonValue);
33   return *this;
34 }
35 
Jsonize() const36 JsonValue InternetConfiguration::Jsonize() const
37 {
38   JsonValue payload;
39 
40   return payload;
41 }
42 
43 } // namespace Model
44 } // namespace AccessAnalyzer
45 } // namespace Aws
46