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-health/source/model/AffectedEntity.cpp

173 lines
3.5 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/health/model/AffectedEntity.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Health
{
namespace Model
{
AffectedEntity::AffectedEntity() :
m_entityArnHasBeenSet(false),
m_eventArnHasBeenSet(false),
m_entityValueHasBeenSet(false),
m_entityUrlHasBeenSet(false),
m_awsAccountIdHasBeenSet(false),
m_lastUpdatedTimeHasBeenSet(false),
m_statusCode(EntityStatusCode::NOT_SET),
m_statusCodeHasBeenSet(false),
m_tagsHasBeenSet(false)
{
}
AffectedEntity::AffectedEntity(JsonView jsonValue) :
m_entityArnHasBeenSet(false),
m_eventArnHasBeenSet(false),
m_entityValueHasBeenSet(false),
m_entityUrlHasBeenSet(false),
m_awsAccountIdHasBeenSet(false),
m_lastUpdatedTimeHasBeenSet(false),
m_statusCode(EntityStatusCode::NOT_SET),
m_statusCodeHasBeenSet(false),
m_tagsHasBeenSet(false)
{
*this = jsonValue;
}
AffectedEntity& AffectedEntity::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("entityArn"))
{
m_entityArn = jsonValue.GetString("entityArn");
m_entityArnHasBeenSet = true;
}
if(jsonValue.ValueExists("eventArn"))
{
m_eventArn = jsonValue.GetString("eventArn");
m_eventArnHasBeenSet = true;
}
if(jsonValue.ValueExists("entityValue"))
{
m_entityValue = jsonValue.GetString("entityValue");
m_entityValueHasBeenSet = true;
}
if(jsonValue.ValueExists("entityUrl"))
{
m_entityUrl = jsonValue.GetString("entityUrl");
m_entityUrlHasBeenSet = true;
}
if(jsonValue.ValueExists("awsAccountId"))
{
m_awsAccountId = jsonValue.GetString("awsAccountId");
m_awsAccountIdHasBeenSet = true;
}
if(jsonValue.ValueExists("lastUpdatedTime"))
{
m_lastUpdatedTime = jsonValue.GetDouble("lastUpdatedTime");
m_lastUpdatedTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("statusCode"))
{
m_statusCode = EntityStatusCodeMapper::GetEntityStatusCodeForName(jsonValue.GetString("statusCode"));
m_statusCodeHasBeenSet = true;
}
if(jsonValue.ValueExists("tags"))
{
Aws::Map<Aws::String, JsonView> tagsJsonMap = jsonValue.GetObject("tags").GetAllObjects();
for(auto& tagsItem : tagsJsonMap)
{
m_tags[tagsItem.first] = tagsItem.second.AsString();
}
m_tagsHasBeenSet = true;
}
return *this;
}
JsonValue AffectedEntity::Jsonize() const
{
JsonValue payload;
if(m_entityArnHasBeenSet)
{
payload.WithString("entityArn", m_entityArn);
}
if(m_eventArnHasBeenSet)
{
payload.WithString("eventArn", m_eventArn);
}
if(m_entityValueHasBeenSet)
{
payload.WithString("entityValue", m_entityValue);
}
if(m_entityUrlHasBeenSet)
{
payload.WithString("entityUrl", m_entityUrl);
}
if(m_awsAccountIdHasBeenSet)
{
payload.WithString("awsAccountId", m_awsAccountId);
}
if(m_lastUpdatedTimeHasBeenSet)
{
payload.WithDouble("lastUpdatedTime", m_lastUpdatedTime.SecondsWithMSPrecision());
}
if(m_statusCodeHasBeenSet)
{
payload.WithString("statusCode", EntityStatusCodeMapper::GetNameForEntityStatusCode(m_statusCode));
}
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 Health
} // namespace Aws