/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::IVS::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; CreateStreamKeyRequest::CreateStreamKeyRequest() : m_channelArnHasBeenSet(false), m_tagsHasBeenSet(false) { } Aws::String CreateStreamKeyRequest::SerializePayload() const { JsonValue payload; if(m_channelArnHasBeenSet) { payload.WithString("channelArn", m_channelArn); } if(m_tagsHasBeenSet) { JsonValue tagsJsonMap; for(auto& tagsItem : m_tags) { tagsJsonMap.WithString(tagsItem.first, tagsItem.second); } payload.WithObject("tags", std::move(tagsJsonMap)); } return payload.View().WriteReadable(); }