This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-mediaconvert/source/model/SpekeKeyProvider.cpp

113 lines
2.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mediaconvert/model/SpekeKeyProvider.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace MediaConvert
{
namespace Model
{
SpekeKeyProvider::SpekeKeyProvider() :
m_certificateArnHasBeenSet(false),
m_resourceIdHasBeenSet(false),
m_systemIdsHasBeenSet(false),
m_urlHasBeenSet(false)
{
}
SpekeKeyProvider::SpekeKeyProvider(JsonView jsonValue) :
m_certificateArnHasBeenSet(false),
m_resourceIdHasBeenSet(false),
m_systemIdsHasBeenSet(false),
m_urlHasBeenSet(false)
{
*this = jsonValue;
}
SpekeKeyProvider& SpekeKeyProvider::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("certificateArn"))
{
m_certificateArn = jsonValue.GetString("certificateArn");
m_certificateArnHasBeenSet = true;
}
if(jsonValue.ValueExists("resourceId"))
{
m_resourceId = jsonValue.GetString("resourceId");
m_resourceIdHasBeenSet = true;
}
if(jsonValue.ValueExists("systemIds"))
{
Array<JsonView> systemIdsJsonList = jsonValue.GetArray("systemIds");
for(unsigned systemIdsIndex = 0; systemIdsIndex < systemIdsJsonList.GetLength(); ++systemIdsIndex)
{
m_systemIds.push_back(systemIdsJsonList[systemIdsIndex].AsString());
}
m_systemIdsHasBeenSet = true;
}
if(jsonValue.ValueExists("url"))
{
m_url = jsonValue.GetString("url");
m_urlHasBeenSet = true;
}
return *this;
}
JsonValue SpekeKeyProvider::Jsonize() const
{
JsonValue payload;
if(m_certificateArnHasBeenSet)
{
payload.WithString("certificateArn", m_certificateArn);
}
if(m_resourceIdHasBeenSet)
{
payload.WithString("resourceId", m_resourceId);
}
if(m_systemIdsHasBeenSet)
{
Array<JsonValue> systemIdsJsonList(m_systemIds.size());
for(unsigned systemIdsIndex = 0; systemIdsIndex < systemIdsJsonList.GetLength(); ++systemIdsIndex)
{
systemIdsJsonList[systemIdsIndex].AsString(m_systemIds[systemIdsIndex]);
}
payload.WithArray("systemIds", std::move(systemIdsJsonList));
}
if(m_urlHasBeenSet)
{
payload.WithString("url", m_url);
}
return payload;
}
} // namespace Model
} // namespace MediaConvert
} // namespace Aws