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