Class: Aws::IAM::Types::DeleteSSHPublicKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteSSHPublicKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass DeleteSSHPublicKeyRequest data as a hash:
{
user_name: "userNameType", # required
ssh_public_key_id: "publicKeyIdType", # required
}
Instance Attribute Summary collapse
-
#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
#ssh_public_key_id ⇒ String
The unique identifier for the SSH public key.
This parameter allows (through its [regex pattern]) a string of characters that can consist of any upper or lowercased letter or digit.
2183 2184 2185 2186 2187 |
# File 'lib/aws-sdk-iam/types.rb', line 2183 class DeleteSSHPublicKeyRequest < Struct.new( :user_name, :ssh_public_key_id) include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user associated with the SSH public key.
This parameter allows (through 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: _+=,.@-
2183 2184 2185 2186 2187 |
# File 'lib/aws-sdk-iam/types.rb', line 2183 class DeleteSSHPublicKeyRequest < Struct.new( :user_name, :ssh_public_key_id) include Aws::Structure end |