/** * 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 IVS { namespace Model { RecordingConfigurationSummary::RecordingConfigurationSummary() : m_arnHasBeenSet(false), m_destinationConfigurationHasBeenSet(false), m_nameHasBeenSet(false), m_state(RecordingConfigurationState::NOT_SET), m_stateHasBeenSet(false), m_tagsHasBeenSet(false) { } RecordingConfigurationSummary::RecordingConfigurationSummary(JsonView jsonValue) : m_arnHasBeenSet(false), m_destinationConfigurationHasBeenSet(false), m_nameHasBeenSet(false), m_state(RecordingConfigurationState::NOT_SET), m_stateHasBeenSet(false), m_tagsHasBeenSet(false) { *this = jsonValue; } RecordingConfigurationSummary& RecordingConfigurationSummary::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("arn")) { m_arn = jsonValue.GetString("arn"); m_arnHasBeenSet = true; } if(jsonValue.ValueExists("destinationConfiguration")) { m_destinationConfiguration = jsonValue.GetObject("destinationConfiguration"); m_destinationConfigurationHasBeenSet = true; } if(jsonValue.ValueExists("name")) { m_name = jsonValue.GetString("name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("state")) { m_state = RecordingConfigurationStateMapper::GetRecordingConfigurationStateForName(jsonValue.GetString("state")); m_stateHasBeenSet = true; } if(jsonValue.ValueExists("tags")) { Aws::Map tagsJsonMap = jsonValue.GetObject("tags").GetAllObjects(); for(auto& tagsItem : tagsJsonMap) { m_tags[tagsItem.first] = tagsItem.second.AsString(); } m_tagsHasBeenSet = true; } return *this; } JsonValue RecordingConfigurationSummary::Jsonize() const { JsonValue payload; if(m_arnHasBeenSet) { payload.WithString("arn", m_arn); } if(m_destinationConfigurationHasBeenSet) { payload.WithObject("destinationConfiguration", m_destinationConfiguration.Jsonize()); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_stateHasBeenSet) { payload.WithString("state", RecordingConfigurationStateMapper::GetNameForRecordingConfigurationState(m_state)); } if(m_tagsHasBeenSet) { JsonValue tagsJsonMap; for(auto& tagsItem : m_tags) { tagsJsonMap.WithString(tagsItem.first, tagsItem.second); } payload.WithObject("tags", std::move(tagsJsonMap)); } return payload; } } // namespace Model } // namespace IVS } // namespace Aws