105 lines
1.9 KiB
C++
105 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/opsworks/model/SelfUserProfile.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace OpsWorks
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
SelfUserProfile::SelfUserProfile() :
|
|
m_iamUserArnHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_sshUsernameHasBeenSet(false),
|
|
m_sshPublicKeyHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
SelfUserProfile::SelfUserProfile(JsonView jsonValue) :
|
|
m_iamUserArnHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_sshUsernameHasBeenSet(false),
|
|
m_sshPublicKeyHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
SelfUserProfile& SelfUserProfile::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("IamUserArn"))
|
|
{
|
|
m_iamUserArn = jsonValue.GetString("IamUserArn");
|
|
|
|
m_iamUserArnHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Name"))
|
|
{
|
|
m_name = jsonValue.GetString("Name");
|
|
|
|
m_nameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("SshUsername"))
|
|
{
|
|
m_sshUsername = jsonValue.GetString("SshUsername");
|
|
|
|
m_sshUsernameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("SshPublicKey"))
|
|
{
|
|
m_sshPublicKey = jsonValue.GetString("SshPublicKey");
|
|
|
|
m_sshPublicKeyHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue SelfUserProfile::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_iamUserArnHasBeenSet)
|
|
{
|
|
payload.WithString("IamUserArn", m_iamUserArn);
|
|
|
|
}
|
|
|
|
if(m_nameHasBeenSet)
|
|
{
|
|
payload.WithString("Name", m_name);
|
|
|
|
}
|
|
|
|
if(m_sshUsernameHasBeenSet)
|
|
{
|
|
payload.WithString("SshUsername", m_sshUsername);
|
|
|
|
}
|
|
|
|
if(m_sshPublicKeyHasBeenSet)
|
|
{
|
|
payload.WithString("SshPublicKey", m_sshPublicKey);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace OpsWorks
|
|
} // namespace Aws
|