# IssueSSHCertResponse


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "description": "IssueSSHCertResponse returns signed SSH client material, never a private key.",
  "properties": {
    "certificate": {
      "description": "certificate is the signed SSH certificate.",
      "type": "string"
    },
    "expiresAt": {
      "$ref": "#/components/schemas/Timestamp",
      "description": "expires_at is the instant after which the certificate is invalid."
    },
    "host": {
      "description": "host is the SSH endpoint host to connect to.",
      "type": "string"
    },
    "knownHosts": {
      "description": "known_hosts is host key material that authenticates the SSH endpoint.",
      "type": "string"
    },
    "port": {
      "description": "port is the SSH endpoint port to connect to.",
      "type": "integer"
    },
    "sshConfig": {
      "description": "ssh_config optionally renders the connection fields as OpenSSH client\nconfiguration; the structured fields are canonical.",
      "type": "string"
    },
    "username": {
      "description": "username is the SSH username to present; it carries no authorization.",
      "type": "string"
    }
  },
  "title": "IssueSSHCertResponse",
  "type": "object"
}
```



