Class: Aws::IAM::Types::SSHPublicKeyMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::SSHPublicKeyMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains information about an SSH public key, without the key’s body or fingerprint.
This data type is used as a response element in the ListSSHPublicKeys operation.
Instance Attribute Summary collapse
-
#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
#ssh_public_key_id ⇒ String
The unique identifier for the SSH public key.
7674 7675 7676 7677 7678 7679 7680 |
# File 'lib/aws-sdk-iam/types.rb', line 7674 class SSHPublicKeyMetadata < Struct.new( :user_name, :ssh_public_key_id, :status, :upload_date) include Aws::Structure end |
#status ⇒ String
The status of the SSH public key. ‘Active` means that the key can be used for authentication with an AWS CodeCommit repository. `Inactive` means that the key cannot be used.
7674 7675 7676 7677 7678 7679 7680 |
# File 'lib/aws-sdk-iam/types.rb', line 7674 class SSHPublicKeyMetadata < Struct.new( :user_name, :ssh_public_key_id, :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.
7674 7675 7676 7677 7678 7679 7680 |
# File 'lib/aws-sdk-iam/types.rb', line 7674 class SSHPublicKeyMetadata < Struct.new( :user_name, :ssh_public_key_id, :status, :upload_date) include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user associated with the SSH public key.
7674 7675 7676 7677 7678 7679 7680 |
# File 'lib/aws-sdk-iam/types.rb', line 7674 class SSHPublicKeyMetadata < Struct.new( :user_name, :ssh_public_key_id, :status, :upload_date) include Aws::Structure end |