/** * 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 Organizations { namespace Model { /** */ class RegisterDelegatedAdministratorRequest : public OrganizationsRequest { public: AWS_ORGANIZATIONS_API RegisterDelegatedAdministratorRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "RegisterDelegatedAdministrator"; } AWS_ORGANIZATIONS_API Aws::String SerializePayload() const override; AWS_ORGANIZATIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The account ID number of the member account in the organization to register * as a delegated administrator.

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

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline const Aws::String& GetServicePrincipal() const{ return m_servicePrincipal; } /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline bool ServicePrincipalHasBeenSet() const { return m_servicePrincipalHasBeenSet; } /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline void SetServicePrincipal(const Aws::String& value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal = value; } /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline void SetServicePrincipal(Aws::String&& value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal = std::move(value); } /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline void SetServicePrincipal(const char* value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal.assign(value); } /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline RegisterDelegatedAdministratorRequest& WithServicePrincipal(const Aws::String& value) { SetServicePrincipal(value); return *this;} /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline RegisterDelegatedAdministratorRequest& WithServicePrincipal(Aws::String&& value) { SetServicePrincipal(std::move(value)); return *this;} /** *

The service principal of the Amazon Web Services service for which you want * to make the member account a delegated administrator.

*/ inline RegisterDelegatedAdministratorRequest& WithServicePrincipal(const char* value) { SetServicePrincipal(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_servicePrincipal; bool m_servicePrincipalHasBeenSet = false; }; } // namespace Model } // namespace Organizations } // namespace Aws