SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 34 Java
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2021-11-15 13:15:43 +00:00
/**
* Before running this C++ code example, set up your development environment, including your credentials.
*
* For more information, see the following documentation topic:
2022-10-14 09:27:14 -04:00
* https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/getting-started.html.
*
2022-10-12 14:52:10 -04:00
* For information on the structure of the code examples and how to build and run the examples, see
* https://docs.aws.amazon.com/sdk-for-cpp/v1/developer-guide/getting-started-code-examples.html.
*
* Purpose
*
* Demonstrates updating an IAM user's name.
*
*/
2021-11-15 13:15:43 +00:00
// snippet-start:[iam.cpp.update_user.inc]
#include <aws/core/Aws.h>
#include <aws/iam/IAMClient.h>
#include <aws/iam/model/UpdateUserRequest.h>
#include <iostream>
#include "iam_samples.h"
2021-11-15 13:15:43 +00:00
// snippet-end:[iam.cpp.update_user.inc]
//! Updates an IAM user's name.
/*!
\sa updateUser()
\param currentUserName: The current user's name.
\param newUserName: The new user's name.
\param clientConfig: Aws client configuration.
\return bool: Successful completion.
*/
// snippet-start:[iam.cpp.update_user.code]
bool AwsDoc::IAM::updateUser(const Aws::String &currentUserName,
2022-10-12 14:52:10 -04:00
const Aws::String &newUserName,
const Aws::Client::ClientConfiguration &clientConfig) {
Aws::IAM::IAMClient iam(clientConfig);
Aws::IAM::Model::UpdateUserRequest request;
request.SetUserName(currentUserName);
request.SetNewUserName(newUserName);
auto outcome = iam.UpdateUser(request);
2022-10-12 14:52:10 -04:00
if (outcome.IsSuccess()) {
std::cout << "IAM user " << currentUserName <<
" successfully updated with new user name " << newUserName <<
std::endl;
}
2022-10-12 14:52:10 -04:00
else {
std::cerr << "Error updating user name for IAM user " << currentUserName <<
":" << outcome.GetError().GetMessage() << std::endl;
}
return outcome.IsSuccess();
}
// snippet-end:[iam.cpp.update_user.code]
/*
*
* main function
*
* Prerequisites: Existing IAM user's name.
*
* Usage: 'run_update_user <old_user_name> <new_user_name>'
*
2021-11-15 13:15:43 +00:00
*/
#ifndef TESTING_BUILD
2021-11-15 13:15:43 +00:00
int main(int argc, char** argv)
{
if (argc != 3)
{
std::cout << "Usage: run_update_user <old_user_name> <new_user_name>" <<
2021-11-15 13:15:43 +00:00
std::endl;
return 1;
}
Aws::SDKOptions options;
Aws::InitAPI(options);
{
Aws::String currentUserName(argv[1]);
Aws::String newUserName(argv[2]);
2021-11-15 13:15:43 +00:00
Aws::Client::ClientConfiguration clientConfig;
// Optional: Set to the AWS Region in which the bucket was created (overrides config file).
// clientConfig.region = "us-east-1";
AwsDoc::IAM::updateUser(currentUserName, newUserName, clientConfig);
2021-11-15 13:15:43 +00:00
}
Aws::ShutdownAPI(options);
return 0;
}
#endif // TESTING_BUILD