2019-01-24 22:25:42 +00:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2018-10-11 14:17:57 -07:00
// ABOUT THIS NODE.JS SAMPLE: This sample is part of the SDK for JavaScript Developer Guide topic at
// https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/iam-examples-managing-users.html
2019-01-25 02:19:58 +00:00
// snippet-start:[iam.JavaScript.users.updateUser]
2018-10-11 14:17:57 -07:00
// Load the AWS SDK for Node.js
var AWS = require ( "aws-sdk" ) ;
// Set the region
AWS . config . update ( { region : "REGION" } ) ;
// Create the IAM service object
var iam = new AWS . IAM ( { apiVersion : "2010-05-08" } ) ;
var params = {
UserName : process . argv [ 2 ] ,
NewUserName : process . argv [ 3 ] ,
} ;
iam . updateUser ( params , function ( err , data ) {
if ( err ) {
console . log ( "Error" , err ) ;
} else {
console . log ( "Success" , data ) ;
}
} ) ;
2019-01-25 02:19:58 +00:00
// snippet-end:[iam.JavaScript.users.updateUser]