76 lines
1.5 KiB
C++
76 lines
1.5 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/cognito-identity/model/UnprocessedIdentityId.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace CognitoIdentity
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
UnprocessedIdentityId::UnprocessedIdentityId() :
|
|||
|
|
m_identityIdHasBeenSet(false),
|
|||
|
|
m_errorCode(ErrorCode::NOT_SET),
|
|||
|
|
m_errorCodeHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
UnprocessedIdentityId::UnprocessedIdentityId(JsonView jsonValue) :
|
|||
|
|
m_identityIdHasBeenSet(false),
|
|||
|
|
m_errorCode(ErrorCode::NOT_SET),
|
|||
|
|
m_errorCodeHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
UnprocessedIdentityId& UnprocessedIdentityId::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("IdentityId"))
|
|||
|
|
{
|
|||
|
|
m_identityId = jsonValue.GetString("IdentityId");
|
|||
|
|
|
|||
|
|
m_identityIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("ErrorCode"))
|
|||
|
|
{
|
|||
|
|
m_errorCode = ErrorCodeMapper::GetErrorCodeForName(jsonValue.GetString("ErrorCode"));
|
|||
|
|
|
|||
|
|
m_errorCodeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue UnprocessedIdentityId::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_identityIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("IdentityId", m_identityId);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_errorCodeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("ErrorCode", ErrorCodeMapper::GetNameForErrorCode(m_errorCode));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CognitoIdentity
|
|||
|
|
} // namespace Aws
|