/** * 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 IAM { namespace Model { /** */ class GetMFADeviceRequest : public IAMRequest { public: AWS_IAM_API GetMFADeviceRequest(); // 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 "GetMFADevice"; } AWS_IAM_API Aws::String SerializePayload() const override; protected: AWS_IAM_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline const Aws::String& GetSerialNumber() const{ return m_serialNumber; } /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline bool SerialNumberHasBeenSet() const { return m_serialNumberHasBeenSet; } /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline void SetSerialNumber(const Aws::String& value) { m_serialNumberHasBeenSet = true; m_serialNumber = value; } /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline void SetSerialNumber(Aws::String&& value) { m_serialNumberHasBeenSet = true; m_serialNumber = std::move(value); } /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline void SetSerialNumber(const char* value) { m_serialNumberHasBeenSet = true; m_serialNumber.assign(value); } /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline GetMFADeviceRequest& WithSerialNumber(const Aws::String& value) { SetSerialNumber(value); return *this;} /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline GetMFADeviceRequest& WithSerialNumber(Aws::String&& value) { SetSerialNumber(std::move(value)); return *this;} /** *

Serial number that uniquely identifies the MFA device. For this API, we only * accept FIDO security key ARNs.

*/ inline GetMFADeviceRequest& WithSerialNumber(const char* value) { SetSerialNumber(value); return *this;} /** *

The friendly name identifying the user.

*/ inline const Aws::String& GetUserName() const{ return m_userName; } /** *

The friendly name identifying the user.

*/ inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; } /** *

The friendly name identifying the user.

*/ inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; } /** *

The friendly name identifying the user.

*/ inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); } /** *

The friendly name identifying the user.

*/ inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); } /** *

The friendly name identifying the user.

*/ inline GetMFADeviceRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;} /** *

The friendly name identifying the user.

*/ inline GetMFADeviceRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;} /** *

The friendly name identifying the user.

*/ inline GetMFADeviceRequest& WithUserName(const char* value) { SetUserName(value); return *this;} private: Aws::String m_serialNumber; bool m_serialNumberHasBeenSet = false; Aws::String m_userName; bool m_userNameHasBeenSet = false; }; } // namespace Model } // namespace IAM } // namespace Aws