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

EcsClusterDetails

import type { EcsClusterDetails } from "https://aws-api.deno.dev/v0.4/services/guardduty.ts?docs=full";

Contains information about the details of the ECS Cluster.

interface EcsClusterDetails {
ActiveServicesCount?: number | null;
Arn?: string | null;
Name?: string | null;
RegisteredContainerInstancesCount?: number | null;
RunningTasksCount?: number | null;
Status?: string | null;
Tags?: Tag[] | null;
TaskDetails?: EcsTaskDetails | null;
}

§Properties

§
ActiveServicesCount?: number | null
[src]

The number of services that are running on the cluster in an ACTIVE state.

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) that identifies the cluster.

§
Name?: string | null
[src]

The name of the ECS Cluster.

§
RegisteredContainerInstancesCount?: number | null
[src]

The number of container instances registered into the cluster.

§
RunningTasksCount?: number | null
[src]

The number of tasks in the cluster that are in the RUNNING state.

§
Status?: string | null
[src]

The status of the ECS cluster.

§
Tags?: Tag[] | null
[src]

The tags of the ECS Cluster.

§
TaskDetails?: EcsTaskDetails | null
[src]

Contains information about the details of the ECS Task.