Class: Aws::IAM::Types::GetSSHPublicKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetSSHPublicKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass GetSSHPublicKeyRequest data as a hash:
{
user_name: "userNameType", # required
ssh_public_key_id: "publicKeyIdType", # required
encoding: "SSH", # required, accepts SSH, PEM
}
Instance Attribute Summary collapse
-
#encoding ⇒ String
Specifies the public key encoding format to use in the response.
-
#ssh_public_key_id ⇒ String
The unique identifier for the SSH public key.
-
#user_name ⇒ String
The name of the IAM user associated with the SSH public key.
Instance Attribute Details
#encoding ⇒ String
Specifies the public key encoding format to use in the response. To retrieve the public key in ssh-rsa format, use ‘SSH`. To retrieve the public key in PEM format, use `PEM`.
3443 3444 3445 3446 3447 3448 |
# File 'lib/aws-sdk-iam/types.rb', line 3443 class GetSSHPublicKeyRequest < Struct.new( :user_name, :ssh_public_key_id, :encoding) include Aws::Structure end |
#ssh_public_key_id ⇒ String
The unique identifier for the SSH public key.
This parameter allows (per its [regex pattern]) a string of characters that can consist of any upper or lowercased letter or digit.
3443 3444 3445 3446 3447 3448 |
# File 'lib/aws-sdk-iam/types.rb', line 3443 class GetSSHPublicKeyRequest < Struct.new( :user_name, :ssh_public_key_id, :encoding) include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user associated with the SSH public key.
This parameter allows (per its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
3443 3444 3445 3446 3447 3448 |
# File 'lib/aws-sdk-iam/types.rb', line 3443 class GetSSHPublicKeyRequest < Struct.new( :user_name, :ssh_public_key_id, :encoding) include Aws::Structure end |