SSHPublicKeyMetadata

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.

APIs.ioEngineeringPlatform

Properties

Name Type Description
UserName object
SSHPublicKeyId object
Status object
UploadDate object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-sshpublickeymetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SSHPublicKeyMetadata",
  "title": "SSHPublicKeyMetadata",
  "type": "object",
  "required": [
    "UserName",
    "SSHPublicKeyId",
    "Status",
    "UploadDate"
  ],
  "properties": {
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/userNameType"
        },
        {
          "description": "The name of the IAM user associated with the SSH public key."
        }
      ]
    },
    "SSHPublicKeyId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/publicKeyIdType"
        },
        {
          "description": "The unique identifier for the SSH public key."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/statusType"
        },
        {
          "description": "The status of the SSH public key. <code>Active</code> means that the key can be used for authentication with an CodeCommit repository. <code>Inactive</code> means that the key cannot be used."
        }
      ]
    },
    "UploadDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": "The date and time, in <a href=\"http://www.iso.org/iso/iso8601\">ISO 8601 date-time format</a>, when the SSH public key was uploaded."
        }
      ]
    }
  },
  "description": "<p>Contains information about an SSH public key, without the key's body or fingerprint.</p> <p>This data type is used as a response element in the <a>ListSSHPublicKeys</a> operation.</p>"
}