/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include (Discontinued) Contains information about the Amazon Macie Classic member
* account.See Also:
AWS
* API Reference
(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline MemberAccount& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline MemberAccount& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *(Discontinued) The Amazon Web Services account ID of the Amazon Macie Classic * member account.
*/ inline MemberAccount& WithAccountId(const char* value) { SetAccountId(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; }; } // namespace Model } // namespace Macie } // namespace Aws