1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/workmail/WorkMail_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Json
19 {
20   class JsonValue;
21 } // namespace Json
22 } // namespace Utils
23 namespace WorkMail
24 {
25 namespace Model
26 {
27   class AWS_WORKMAIL_API CreateUserResult
28   {
29   public:
30     CreateUserResult();
31     CreateUserResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     CreateUserResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35     /**
36      * <p>The identifier for the new user.</p>
37      */
GetUserId()38     inline const Aws::String& GetUserId() const{ return m_userId; }
39 
40     /**
41      * <p>The identifier for the new user.</p>
42      */
SetUserId(const Aws::String & value)43     inline void SetUserId(const Aws::String& value) { m_userId = value; }
44 
45     /**
46      * <p>The identifier for the new user.</p>
47      */
SetUserId(Aws::String && value)48     inline void SetUserId(Aws::String&& value) { m_userId = std::move(value); }
49 
50     /**
51      * <p>The identifier for the new user.</p>
52      */
SetUserId(const char * value)53     inline void SetUserId(const char* value) { m_userId.assign(value); }
54 
55     /**
56      * <p>The identifier for the new user.</p>
57      */
WithUserId(const Aws::String & value)58     inline CreateUserResult& WithUserId(const Aws::String& value) { SetUserId(value); return *this;}
59 
60     /**
61      * <p>The identifier for the new user.</p>
62      */
WithUserId(Aws::String && value)63     inline CreateUserResult& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;}
64 
65     /**
66      * <p>The identifier for the new user.</p>
67      */
WithUserId(const char * value)68     inline CreateUserResult& WithUserId(const char* value) { SetUserId(value); return *this;}
69 
70   private:
71 
72     Aws::String m_userId;
73   };
74 
75 } // namespace Model
76 } // namespace WorkMail
77 } // namespace Aws
78