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

VirtualCluster

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

This entity describes a virtual cluster. A virtual cluster is a Kubernetes namespace that Amazon EMR is registered with. Amazon EMR uses virtual clusters to run jobs and host endpoints. Multiple virtual clusters can be backed by the same physical cluster. However, each virtual cluster maps to one namespace on an EKS cluster. Virtual clusters do not create any active resources that contribute to your bill or that require lifecycle management outside the service.

interface VirtualCluster {
arn?: string | null;
containerProvider?: ContainerProvider | null;
createdAt?: Date | number | null;
id?: string | null;
name?: string | null;
state?: VirtualClusterState | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the virtual cluster.

§
containerProvider?: ContainerProvider | null
[src]

The container provider of the virtual cluster.

§
createdAt?: Date | number | null
[src]

The date and time when the virtual cluster is created.

§
id?: string | null
[src]

The ID of the virtual cluster.

§
name?: string | null
[src]

The name of the virtual cluster.

§

The state of the virtual cluster.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The assigned tags of the virtual cluster.