class Fog::Parsers::AWS::IAM::ListSshPublicKeys

Public Class Methods

aws_schema() click to toggle source

docs.aws.amazon.com/IAM/latest/APIReference/API_ListSSHPublicKeys.html

# File lib/fog/aws/requests/iam/list_ssh_public_keys.rb, line 7
def self.aws_schema
  {
    'IsTruncated' => :boolean,
    'Marker' => :string,
    'SSHPublicKeys' => [{
      'SSHPublicKeyId' => :string,
      'Status' => 'Active|Inactive',
      'UploadDate' => :time,
      'UserName' => :string,
    }]
  }
end