/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace OpsWorks { namespace Model { UserProfile::UserProfile() : m_iamUserArnHasBeenSet(false), m_nameHasBeenSet(false), m_sshUsernameHasBeenSet(false), m_sshPublicKeyHasBeenSet(false), m_allowSelfManagement(false), m_allowSelfManagementHasBeenSet(false) { } UserProfile::UserProfile(JsonView jsonValue) : m_iamUserArnHasBeenSet(false), m_nameHasBeenSet(false), m_sshUsernameHasBeenSet(false), m_sshPublicKeyHasBeenSet(false), m_allowSelfManagement(false), m_allowSelfManagementHasBeenSet(false) { *this = jsonValue; } UserProfile& UserProfile::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; } if(jsonValue.ValueExists("AllowSelfManagement")) { m_allowSelfManagement = jsonValue.GetBool("AllowSelfManagement"); m_allowSelfManagementHasBeenSet = true; } return *this; } JsonValue UserProfile::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); } if(m_allowSelfManagementHasBeenSet) { payload.WithBool("AllowSelfManagement", m_allowSelfManagement); } return payload; } } // namespace Model } // namespace OpsWorks } // namespace Aws