This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-securityhub/include/aws/securityhub/model/GetInvitationsCountResult.h

59 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/securityhub/SecurityHub_EXPORTS.h>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace SecurityHub
{
namespace Model
{
class AWS_SECURITYHUB_API GetInvitationsCountResult
{
public:
GetInvitationsCountResult();
GetInvitationsCountResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetInvitationsCountResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The number of all membership invitations sent to this Security Hub member
* account, not including the currently accepted invitation.</p>
*/
inline int GetInvitationsCount() const{ return m_invitationsCount; }
/**
* <p>The number of all membership invitations sent to this Security Hub member
* account, not including the currently accepted invitation.</p>
*/
inline void SetInvitationsCount(int value) { m_invitationsCount = value; }
/**
* <p>The number of all membership invitations sent to this Security Hub member
* account, not including the currently accepted invitation.</p>
*/
inline GetInvitationsCountResult& WithInvitationsCount(int value) { SetInvitationsCount(value); return *this;}
private:
int m_invitationsCount;
};
} // namespace Model
} // namespace SecurityHub
} // namespace Aws