/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies an organization member account ID as a CloudTrail delegated
* administrator.See Also:
AWS
* API Reference
An organization member account ID that you want to designate as a delegated * administrator.
*/ inline const Aws::String& GetMemberAccountId() const{ return m_memberAccountId; } /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline bool MemberAccountIdHasBeenSet() const { return m_memberAccountIdHasBeenSet; } /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline void SetMemberAccountId(const Aws::String& value) { m_memberAccountIdHasBeenSet = true; m_memberAccountId = value; } /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline void SetMemberAccountId(Aws::String&& value) { m_memberAccountIdHasBeenSet = true; m_memberAccountId = std::move(value); } /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline void SetMemberAccountId(const char* value) { m_memberAccountIdHasBeenSet = true; m_memberAccountId.assign(value); } /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline RegisterOrganizationDelegatedAdminRequest& WithMemberAccountId(const Aws::String& value) { SetMemberAccountId(value); return *this;} /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline RegisterOrganizationDelegatedAdminRequest& WithMemberAccountId(Aws::String&& value) { SetMemberAccountId(std::move(value)); return *this;} /** *An organization member account ID that you want to designate as a delegated * administrator.
*/ inline RegisterOrganizationDelegatedAdminRequest& WithMemberAccountId(const char* value) { SetMemberAccountId(value); return *this;} private: Aws::String m_memberAccountId; bool m_memberAccountIdHasBeenSet = false; }; } // namespace Model } // namespace CloudTrail } // namespace Aws