/** * 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 Transfer { namespace Model { /** */ class ImportSshPublicKeyRequest : public TransferRequest { public: AWS_TRANSFER_API ImportSshPublicKeyRequest(); // 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 "ImportSshPublicKey"; } AWS_TRANSFER_API Aws::String SerializePayload() const override; AWS_TRANSFER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

A system-assigned unique identifier for a server.

*/ inline const Aws::String& GetServerId() const{ return m_serverId; } /** *

A system-assigned unique identifier for a server.

*/ inline bool ServerIdHasBeenSet() const { return m_serverIdHasBeenSet; } /** *

A system-assigned unique identifier for a server.

*/ inline void SetServerId(const Aws::String& value) { m_serverIdHasBeenSet = true; m_serverId = value; } /** *

A system-assigned unique identifier for a server.

*/ inline void SetServerId(Aws::String&& value) { m_serverIdHasBeenSet = true; m_serverId = std::move(value); } /** *

A system-assigned unique identifier for a server.

*/ inline void SetServerId(const char* value) { m_serverIdHasBeenSet = true; m_serverId.assign(value); } /** *

A system-assigned unique identifier for a server.

*/ inline ImportSshPublicKeyRequest& WithServerId(const Aws::String& value) { SetServerId(value); return *this;} /** *

A system-assigned unique identifier for a server.

*/ inline ImportSshPublicKeyRequest& WithServerId(Aws::String&& value) { SetServerId(std::move(value)); return *this;} /** *

A system-assigned unique identifier for a server.

*/ inline ImportSshPublicKeyRequest& WithServerId(const char* value) { SetServerId(value); return *this;} /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline const Aws::String& GetSshPublicKeyBody() const{ return m_sshPublicKeyBody; } /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline bool SshPublicKeyBodyHasBeenSet() const { return m_sshPublicKeyBodyHasBeenSet; } /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline void SetSshPublicKeyBody(const Aws::String& value) { m_sshPublicKeyBodyHasBeenSet = true; m_sshPublicKeyBody = value; } /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline void SetSshPublicKeyBody(Aws::String&& value) { m_sshPublicKeyBodyHasBeenSet = true; m_sshPublicKeyBody = std::move(value); } /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline void SetSshPublicKeyBody(const char* value) { m_sshPublicKeyBodyHasBeenSet = true; m_sshPublicKeyBody.assign(value); } /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline ImportSshPublicKeyRequest& WithSshPublicKeyBody(const Aws::String& value) { SetSshPublicKeyBody(value); return *this;} /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline ImportSshPublicKeyRequest& WithSshPublicKeyBody(Aws::String&& value) { SetSshPublicKeyBody(std::move(value)); return *this;} /** *

The public key portion of an SSH key pair.

Transfer Family accepts * RSA, ECDSA, and ED25519 keys.

*/ inline ImportSshPublicKeyRequest& WithSshPublicKeyBody(const char* value) { SetSshPublicKeyBody(value); return *this;} /** *

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

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

The name of the Transfer Family user that is assigned to one or more * servers.

*/ inline ImportSshPublicKeyRequest& WithUserName(const char* value) { SetUserName(value); return *this;} private: Aws::String m_serverId; bool m_serverIdHasBeenSet = false; Aws::String m_sshPublicKeyBody; bool m_sshPublicKeyBodyHasBeenSet = false; Aws::String m_userName; bool m_userNameHasBeenSet = false; }; } // namespace Model } // namespace Transfer } // namespace Aws