/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SecurityHub { namespace Model { /** *

Details about an invitation.

See Also:

AWS * API Reference

*/ class Invitation { public: AWS_SECURITYHUB_API Invitation(); AWS_SECURITYHUB_API Invitation(Aws::Utils::Json::JsonView jsonValue); AWS_SECURITYHUB_API Invitation& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SECURITYHUB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline Invitation& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline Invitation& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The account ID of the Security Hub administrator account that the invitation * was sent from.

*/ inline Invitation& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *

The ID of the invitation sent to the member account.

*/ inline const Aws::String& GetInvitationId() const{ return m_invitationId; } /** *

The ID of the invitation sent to the member account.

*/ inline bool InvitationIdHasBeenSet() const { return m_invitationIdHasBeenSet; } /** *

The ID of the invitation sent to the member account.

*/ inline void SetInvitationId(const Aws::String& value) { m_invitationIdHasBeenSet = true; m_invitationId = value; } /** *

The ID of the invitation sent to the member account.

*/ inline void SetInvitationId(Aws::String&& value) { m_invitationIdHasBeenSet = true; m_invitationId = std::move(value); } /** *

The ID of the invitation sent to the member account.

*/ inline void SetInvitationId(const char* value) { m_invitationIdHasBeenSet = true; m_invitationId.assign(value); } /** *

The ID of the invitation sent to the member account.

*/ inline Invitation& WithInvitationId(const Aws::String& value) { SetInvitationId(value); return *this;} /** *

The ID of the invitation sent to the member account.

*/ inline Invitation& WithInvitationId(Aws::String&& value) { SetInvitationId(std::move(value)); return *this;} /** *

The ID of the invitation sent to the member account.

*/ inline Invitation& WithInvitationId(const char* value) { SetInvitationId(value); return *this;} /** *

The timestamp of when the invitation was sent.

*/ inline const Aws::Utils::DateTime& GetInvitedAt() const{ return m_invitedAt; } /** *

The timestamp of when the invitation was sent.

*/ inline bool InvitedAtHasBeenSet() const { return m_invitedAtHasBeenSet; } /** *

The timestamp of when the invitation was sent.

*/ inline void SetInvitedAt(const Aws::Utils::DateTime& value) { m_invitedAtHasBeenSet = true; m_invitedAt = value; } /** *

The timestamp of when the invitation was sent.

*/ inline void SetInvitedAt(Aws::Utils::DateTime&& value) { m_invitedAtHasBeenSet = true; m_invitedAt = std::move(value); } /** *

The timestamp of when the invitation was sent.

*/ inline Invitation& WithInvitedAt(const Aws::Utils::DateTime& value) { SetInvitedAt(value); return *this;} /** *

The timestamp of when the invitation was sent.

*/ inline Invitation& WithInvitedAt(Aws::Utils::DateTime&& value) { SetInvitedAt(std::move(value)); return *this;} /** *

The current status of the association between the member and administrator * accounts.

*/ inline const Aws::String& GetMemberStatus() const{ return m_memberStatus; } /** *

The current status of the association between the member and administrator * accounts.

*/ inline bool MemberStatusHasBeenSet() const { return m_memberStatusHasBeenSet; } /** *

The current status of the association between the member and administrator * accounts.

*/ inline void SetMemberStatus(const Aws::String& value) { m_memberStatusHasBeenSet = true; m_memberStatus = value; } /** *

The current status of the association between the member and administrator * accounts.

*/ inline void SetMemberStatus(Aws::String&& value) { m_memberStatusHasBeenSet = true; m_memberStatus = std::move(value); } /** *

The current status of the association between the member and administrator * accounts.

*/ inline void SetMemberStatus(const char* value) { m_memberStatusHasBeenSet = true; m_memberStatus.assign(value); } /** *

The current status of the association between the member and administrator * accounts.

*/ inline Invitation& WithMemberStatus(const Aws::String& value) { SetMemberStatus(value); return *this;} /** *

The current status of the association between the member and administrator * accounts.

*/ inline Invitation& WithMemberStatus(Aws::String&& value) { SetMemberStatus(std::move(value)); return *this;} /** *

The current status of the association between the member and administrator * accounts.

*/ inline Invitation& WithMemberStatus(const char* value) { SetMemberStatus(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_invitationId; bool m_invitationIdHasBeenSet = false; Aws::Utils::DateTime m_invitedAt; bool m_invitedAtHasBeenSet = false; Aws::String m_memberStatus; bool m_memberStatusHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws