Class: Aws::IAM::Types::SSHPublicKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::SSHPublicKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an SSH public key.
This data type is used as a response element in the GetSSHPublicKey and UploadSSHPublicKey actions.
Instance Attribute Summary collapse
-
#fingerprint ⇒ String
The MD5 message digest of the SSH public key.
-
#ssh_public_key_body ⇒ String
The SSH public key.
-
#ssh_public_key_id ⇒ String
The unique identifier for the SSH public key.
-
#status ⇒ String
The status of the SSH public key.
-
#upload_date ⇒ Time
The date and time, in [ISO 8601 date-time format], when the SSH public key was uploaded.
-
#user_name ⇒ String
The name of the IAM user associated with the SSH public key.
Instance Attribute Details
#fingerprint ⇒ String
The MD5 message digest of the SSH public key.
6931 6932 6933 6934 6935 6936 6937 6938 6939 |
# File 'lib/aws-sdk-iam/types.rb', line 6931 class SSHPublicKey < Struct.new( :user_name, :ssh_public_key_id, :fingerprint, :ssh_public_key_body, :status, :upload_date) include Aws::Structure end |
#ssh_public_key_body ⇒ String
The SSH public key.
6931 6932 6933 6934 6935 6936 6937 6938 6939 |
# File 'lib/aws-sdk-iam/types.rb', line 6931 class SSHPublicKey < Struct.new( :user_name, :ssh_public_key_id, :fingerprint, :ssh_public_key_body, :status, :upload_date) include Aws::Structure end |
#ssh_public_key_id ⇒ String
The unique identifier for the SSH public key.
6931 6932 6933 6934 6935 6936 6937 6938 6939 |
# File 'lib/aws-sdk-iam/types.rb', line 6931 class SSHPublicKey < Struct.new( :user_name, :ssh_public_key_id, :fingerprint, :ssh_public_key_body, :status, :upload_date) include Aws::Structure end |
#status ⇒ String
The status of the SSH public key. ‘Active` means the key can be used for authentication with an AWS CodeCommit repository. `Inactive` means the key cannot be used.
6931 6932 6933 6934 6935 6936 6937 6938 6939 |
# File 'lib/aws-sdk-iam/types.rb', line 6931 class SSHPublicKey < Struct.new( :user_name, :ssh_public_key_id, :fingerprint, :ssh_public_key_body, :status, :upload_date) include Aws::Structure end |
#upload_date ⇒ Time
The date and time, in [ISO 8601 date-time format], when the SSH public key was uploaded.
6931 6932 6933 6934 6935 6936 6937 6938 6939 |
# File 'lib/aws-sdk-iam/types.rb', line 6931 class SSHPublicKey < Struct.new( :user_name, :ssh_public_key_id, :fingerprint, :ssh_public_key_body, :status, :upload_date) include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user associated with the SSH public key.
6931 6932 6933 6934 6935 6936 6937 6938 6939 |
# File 'lib/aws-sdk-iam/types.rb', line 6931 class SSHPublicKey < Struct.new( :user_name, :ssh_public_key_id, :fingerprint, :ssh_public_key_body, :status, :upload_date) include Aws::Structure end |