93 lines
1.8 KiB
C++
93 lines
1.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/clouddirectory/model/BatchWriteException.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CloudDirectory
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
BatchWriteException::BatchWriteException() :
|
|
m_index(0),
|
|
m_indexHasBeenSet(false),
|
|
m_type(BatchWriteExceptionType::NOT_SET),
|
|
m_typeHasBeenSet(false),
|
|
m_messageHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
BatchWriteException::BatchWriteException(JsonView jsonValue) :
|
|
m_index(0),
|
|
m_indexHasBeenSet(false),
|
|
m_type(BatchWriteExceptionType::NOT_SET),
|
|
m_typeHasBeenSet(false),
|
|
m_messageHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
BatchWriteException& BatchWriteException::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Index"))
|
|
{
|
|
m_index = jsonValue.GetInteger("Index");
|
|
|
|
m_indexHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Type"))
|
|
{
|
|
m_type = BatchWriteExceptionTypeMapper::GetBatchWriteExceptionTypeForName(jsonValue.GetString("Type"));
|
|
|
|
m_typeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Message"))
|
|
{
|
|
m_message = jsonValue.GetString("Message");
|
|
|
|
m_messageHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue BatchWriteException::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_indexHasBeenSet)
|
|
{
|
|
payload.WithInteger("Index", m_index);
|
|
|
|
}
|
|
|
|
if(m_typeHasBeenSet)
|
|
{
|
|
payload.WithString("Type", BatchWriteExceptionTypeMapper::GetNameForBatchWriteExceptionType(m_type));
|
|
}
|
|
|
|
if(m_messageHasBeenSet)
|
|
{
|
|
payload.WithString("Message", m_message);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace CloudDirectory
|
|
} // namespace Aws
|