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/securityhub/SecurityHub_EXPORTS.h>
8 
9 namespace Aws
10 {
11 template<typename RESULT_TYPE>
12 class AmazonWebServiceResult;
13 
14 namespace Utils
15 {
16 namespace Json
17 {
18   class JsonValue;
19 } // namespace Json
20 } // namespace Utils
21 namespace SecurityHub
22 {
23 namespace Model
24 {
25   class AWS_SECURITYHUB_API GetInvitationsCountResult
26   {
27   public:
28     GetInvitationsCountResult();
29     GetInvitationsCountResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
30     GetInvitationsCountResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
31 
32 
33     /**
34      * <p>The number of all membership invitations sent to this Security Hub member
35      * account, not including the currently accepted invitation.</p>
36      */
GetInvitationsCount()37     inline int GetInvitationsCount() const{ return m_invitationsCount; }
38 
39     /**
40      * <p>The number of all membership invitations sent to this Security Hub member
41      * account, not including the currently accepted invitation.</p>
42      */
SetInvitationsCount(int value)43     inline void SetInvitationsCount(int value) { m_invitationsCount = value; }
44 
45     /**
46      * <p>The number of all membership invitations sent to this Security Hub member
47      * account, not including the currently accepted invitation.</p>
48      */
WithInvitationsCount(int value)49     inline GetInvitationsCountResult& WithInvitationsCount(int value) { SetInvitationsCount(value); return *this;}
50 
51   private:
52 
53     int m_invitationsCount;
54   };
55 
56 } // namespace Model
57 } // namespace SecurityHub
58 } // namespace Aws
59