/** * 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 FMS { namespace Model { /** */ class GetAdminScopeRequest : public FMSRequest { public: AWS_FMS_API GetAdminScopeRequest(); // 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 "GetAdminScope"; } AWS_FMS_API Aws::String SerializePayload() const override; AWS_FMS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The administator account that you want to get the details for.

*/ inline const Aws::String& GetAdminAccount() const{ return m_adminAccount; } /** *

The administator account that you want to get the details for.

*/ inline bool AdminAccountHasBeenSet() const { return m_adminAccountHasBeenSet; } /** *

The administator account that you want to get the details for.

*/ inline void SetAdminAccount(const Aws::String& value) { m_adminAccountHasBeenSet = true; m_adminAccount = value; } /** *

The administator account that you want to get the details for.

*/ inline void SetAdminAccount(Aws::String&& value) { m_adminAccountHasBeenSet = true; m_adminAccount = std::move(value); } /** *

The administator account that you want to get the details for.

*/ inline void SetAdminAccount(const char* value) { m_adminAccountHasBeenSet = true; m_adminAccount.assign(value); } /** *

The administator account that you want to get the details for.

*/ inline GetAdminScopeRequest& WithAdminAccount(const Aws::String& value) { SetAdminAccount(value); return *this;} /** *

The administator account that you want to get the details for.

*/ inline GetAdminScopeRequest& WithAdminAccount(Aws::String&& value) { SetAdminAccount(std::move(value)); return *this;} /** *

The administator account that you want to get the details for.

*/ inline GetAdminScopeRequest& WithAdminAccount(const char* value) { SetAdminAccount(value); return *this;} private: Aws::String m_adminAccount; bool m_adminAccountHasBeenSet = false; }; } // namespace Model } // namespace FMS } // namespace Aws