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

ClusterSetting

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

The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights for a cluster.

interface ClusterSetting {
name?: ClusterSettingName | null;
value?: string | null;
}

§Properties

§

The name of the cluster setting. The only supported value is containerInsights.

§
value?: string | null
[src]

The value to set for the cluster setting. The supported values are enabled and disabled. If enabled is specified, CloudWatch Container Insights will be enabled for the cluster, otherwise it will be off unless the containerInsights account setting is turned on. If a cluster value is specified, it will override the containerInsights value set with PutAccountSetting or PutAccountSettingDefault.