Class: Aws::Transfer::Types::SshPublicKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::SshPublicKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Provides information about the public Secure Shell (SSH) key that is associated with a user account for the specific file transfer protocol-enabled server (as identified by `ServerId`). The information returned includes the date the key was imported, the public key contents, and the public key ID. A user can store more than one SSH public key associated with their user name on a specific server.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_imported ⇒ Time
Specifies the date that the public key was added to the user account.
-
#ssh_public_key_body ⇒ String
Specifies the content of the SSH public key as specified by the `PublicKeyId`.
-
#ssh_public_key_id ⇒ String
Specifies the `SshPublicKeyId` parameter contains the identifier of the public key.
Instance Attribute Details
#date_imported ⇒ Time
Specifies the date that the public key was added to the user account.
4580 4581 4582 4583 4584 4585 4586 |
# File 'lib/aws-sdk-transfer/types.rb', line 4580 class SshPublicKey < Struct.new( :date_imported, :ssh_public_key_body, :ssh_public_key_id) SENSITIVE = [] include Aws::Structure end |
#ssh_public_key_body ⇒ String
Specifies the content of the SSH public key as specified by the `PublicKeyId`.
Transfer Family accepts RSA, ECDSA, and ED25519 keys.
4580 4581 4582 4583 4584 4585 4586 |
# File 'lib/aws-sdk-transfer/types.rb', line 4580 class SshPublicKey < Struct.new( :date_imported, :ssh_public_key_body, :ssh_public_key_id) SENSITIVE = [] include Aws::Structure end |
#ssh_public_key_id ⇒ String
Specifies the `SshPublicKeyId` parameter contains the identifier of the public key.
4580 4581 4582 4583 4584 4585 4586 |
# File 'lib/aws-sdk-transfer/types.rb', line 4580 class SshPublicKey < Struct.new( :date_imported, :ssh_public_key_body, :ssh_public_key_id) SENSITIVE = [] include Aws::Structure end |