Class: Aws::Transfer::Types::ImportSshPublicKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ImportSshPublicKeyRequest
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Note:
When making an API call, you may pass ImportSshPublicKeyRequest data as a hash:
{
server_id: "ServerId", # required
ssh_public_key_body: "SshPublicKeyBody", # required
user_name: "UserName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#server_id ⇒ String
A system-assigned unique identifier for a server.
-
#ssh_public_key_body ⇒ String
The public key portion of an SSH key pair.
-
#user_name ⇒ String
The name of the user account that is assigned to one or more servers.
Instance Attribute Details
#server_id ⇒ String
A system-assigned unique identifier for a server.
3193 3194 3195 3196 3197 3198 3199 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3193 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end |
#ssh_public_key_body ⇒ String
The public key portion of an SSH key pair.
Transfer Family accepts RSA, ECDSA, and ED25519 keys.
3193 3194 3195 3196 3197 3198 3199 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3193 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name of the user account that is assigned to one or more servers.
3193 3194 3195 3196 3197 3198 3199 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3193 class ImportSshPublicKeyRequest < Struct.new( :server_id, :ssh_public_key_body, :user_name) SENSITIVE = [] include Aws::Structure end |