2022-10-03 09:54:27 -04:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
2022-10-06 16:46:51 -04:00
2022-10-03 09:54:27 -04: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-03 09:54:27 -04:00
*
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.
*
2022-10-03 09:54:27 -04:00
* Purpose
*
* Demonstrates creating an IAM user.
*
*/
2022-10-07 15:58:01 -04:00
// snippet-start:[iam.cpp.create_user.inc]
# include <aws/core/Aws.h>
# include <aws/iam/IAMClient.h>
# include <aws/iam/model/CreateUserRequest.h>
2022-10-14 20:46:48 -06:00
// snippet-start:[iam.cpp.get_user.inc]
2022-10-07 15:58:01 -04:00
# include <aws/iam/model/GetUserRequest.h>
# include <aws/iam/model/GetUserResult.h>
2022-10-14 20:46:48 -06:00
// snippet-end:[iam.cpp.get_user.inc]
2022-10-07 15:58:01 -04:00
# include <iostream>
# include "iam_samples.h"
// snippet-end:[iam.cpp.create_user.inc]
2022-10-03 09:54:27 -04:00
//! Creates an IAM user.
/*!
\sa createUser()
2022-10-06 16:46:51 -04:00
\param userName: The user name.
\param clientConfig: Aws client configuration.
2022-10-03 09:54:27 -04:00
\return bool: Successful completion.
*/
2022-10-07 15:58:01 -04:00
bool AwsDoc : : IAM : : createUser ( const Aws : : String & userName ,
const Aws : : Client : : ClientConfiguration & clientConfig ) {
2021-11-15 13:15:43 +00:00
// snippet-start:[iam.cpp.create_user01.code]
2022-10-07 15:58:01 -04:00
Aws : : IAM : : IAMClient iam ( clientConfig ) ;
2021-11-15 13:15:43 +00:00
// snippet-end:[iam.cpp.create_user01.code]
// snippet-start:[iam.cpp.get_user.code]
Aws : : IAM : : Model : : GetUserRequest get_request ;
2022-10-06 16:46:51 -04:00
get_request . SetUserName ( userName ) ;
2021-11-15 13:15:43 +00:00
auto get_outcome = iam . GetUser ( get_request ) ;
2022-10-07 15:58:01 -04:00
if ( get_outcome . IsSuccess ( ) ) {
2022-10-06 16:46:51 -04:00
std : : cout < < " IAM user " < < userName < < " already exists " < < std : : endl ;
2022-10-03 09:54:27 -04:00
return true ;
2021-11-15 13:15:43 +00:00
}
else if ( get_outcome . GetError ( ) . GetErrorType ( ) ! =
2022-10-07 15:58:01 -04:00
Aws : : IAM : : IAMErrors : : NO_SUCH_ENTITY ) {
2022-10-06 16:46:51 -04:00
std : : cerr < < " Error checking existence of IAM user " < < userName < < " : "
2022-10-07 15:58:01 -04:00
< < get_outcome . GetError ( ) . GetMessage ( ) < < std : : endl ;
2022-10-03 09:54:27 -04:00
return false ;
2021-11-15 13:15:43 +00:00
}
// snippet-end:[iam.cpp.get_user.code]
// snippet-start:[iam.cpp.create_user02.code]
Aws : : IAM : : Model : : CreateUserRequest create_request ;
2022-10-06 16:46:51 -04:00
create_request . SetUserName ( userName ) ;
2021-11-15 13:15:43 +00:00
auto create_outcome = iam . CreateUser ( create_request ) ;
2022-10-07 15:58:01 -04:00
if ( ! create_outcome . IsSuccess ( ) ) {
2022-10-06 16:46:51 -04:00
std : : cerr < < " Error creating IAM user " < < userName < < " : " < <
create_outcome . GetError ( ) . GetMessage ( ) < < std : : endl ;
2021-11-15 13:15:43 +00:00
}
2022-10-07 15:58:01 -04:00
else {
2022-10-06 16:46:51 -04:00
std : : cout < < " Successfully created IAM user " < < userName < < std : : endl ;
2022-10-03 09:54:27 -04:00
}
return create_outcome . IsSuccess ( ) ;
2021-11-15 13:15:43 +00:00
// snippet-end:[iam.cpp.create_user02.code]
}
2022-10-03 09:54:27 -04:00
/*
*
* main function
*
* Usage: 'run_create_user <user_name>'
*
2021-11-15 13:15:43 +00:00
*/
2022-10-03 09:54:27 -04:00
# ifndef TESTING_BUILD
2022-10-07 15:58:01 -04:00
int main ( int argc , char * * argv ) {
if ( argc ! = 2 ) {
2022-10-06 16:46:51 -04:00
std : : cout < < " Usage: run_create_user <user_name> " < < std : : endl ;
2021-11-15 13:15:43 +00:00
return 1 ;
}
Aws : : SDKOptions options ;
Aws : : InitAPI ( options ) ;
{
2022-10-06 16:46:51 -04:00
Aws : : String userName ( argv [ 1 ] ) ;
2021-11-15 13:15:43 +00:00
2022-10-03 09:54:27 -04: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";
2022-10-06 16:46:51 -04:00
AwsDoc : : IAM : : createUser ( userName , clientConfig ) ;
}
Aws : : ShutdownAPI ( options ) ;
2021-11-15 13:15:43 +00:00
return 0 ;
}
2022-10-07 15:58:01 -04:00
2022-10-03 09:54:27 -04:00
# endif // TESTING_BUILD