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

AwsEcsClusterDetails

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

Provides details about an Amazon ECS cluster.

interface AwsEcsClusterDetails {
ActiveServicesCount?: number | null;
CapacityProviders?: string[] | null;
ClusterArn?: string | null;
ClusterName?: string | null;
ClusterSettings?: AwsEcsClusterClusterSettingsDetails[] | null;
Configuration?: AwsEcsClusterConfigurationDetails | null;
DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyDetails[] | null;
RegisteredContainerInstancesCount?: number | null;
RunningTasksCount?: number | null;
Status?: string | null;
}

§Properties

§
ActiveServicesCount?: number | null
[src]

The number of services that are running on the cluster in an ACTIVE state. You can view these services with the Amazon ECS ListServices API operation.

§
CapacityProviders?: string[] | null
[src]

The short name of one or more capacity providers to associate with the cluster.

§
ClusterArn?: string | null
[src]

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

§
ClusterName?: string | null
[src]

A name that you use to identify your cluster.

§
ClusterSettings?: AwsEcsClusterClusterSettingsDetails[] | null
[src]

The setting to use to create the cluster. Specifically used to configure whether to enable CloudWatch Container Insights for the cluster.

§

The run command configuration for the cluster.

§
DefaultCapacityProviderStrategy?: AwsEcsClusterDefaultCapacityProviderStrategyDetails[] | null
[src]

The default capacity provider strategy for the cluster. The default capacity provider strategy is used when services or tasks are run without a specified launch type or capacity provider strategy.

§
RegisteredContainerInstancesCount?: number | null
[src]

The number of container instances registered into the cluster. This includes container instances in both ACTIVE and DRAINING status.

§
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 cluster.