/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace KinesisAnalyticsV2 { namespace Model { ZeppelinMonitoringConfigurationDescription::ZeppelinMonitoringConfigurationDescription() : m_logLevel(LogLevel::NOT_SET), m_logLevelHasBeenSet(false) { } ZeppelinMonitoringConfigurationDescription::ZeppelinMonitoringConfigurationDescription(JsonView jsonValue) : m_logLevel(LogLevel::NOT_SET), m_logLevelHasBeenSet(false) { *this = jsonValue; } ZeppelinMonitoringConfigurationDescription& ZeppelinMonitoringConfigurationDescription::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("LogLevel")) { m_logLevel = LogLevelMapper::GetLogLevelForName(jsonValue.GetString("LogLevel")); m_logLevelHasBeenSet = true; } return *this; } JsonValue ZeppelinMonitoringConfigurationDescription::Jsonize() const { JsonValue payload; if(m_logLevelHasBeenSet) { payload.WithString("LogLevel", LogLevelMapper::GetNameForLogLevel(m_logLevel)); } return payload; } } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws