Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Hypervisor

import type { Hypervisor } from "https://aws-api.deno.dev/v0.3/services/backupgateway.ts?docs=full";

Represents the hypervisor's permissions to which the gateway will connect.

A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.

interface Hypervisor {
Host?: string | null;
HypervisorArn?: string | null;
KmsKeyArn?: string | null;
Name?: string | null;
State?: HypervisorState | null;
}

§Properties

§
Host?: string | null
[src]

The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).

§
HypervisorArn?: string | null
[src]

The Amazon Resource Name (ARN) of the hypervisor.

§
KmsKeyArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Key Management Service used to encrypt the hypervisor.

§
Name?: string | null
[src]

The name of the hypervisor.

§
State?: HypervisorState | null
[src]

The state of the hypervisor.