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

StackSummary

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

Summarizes the number of layers, instances, and apps in a stack.

interface StackSummary {
AppsCount?: number | null;
Arn?: string | null;
InstancesCount?: InstancesCount | null;
LayersCount?: number | null;
Name?: string | null;
StackId?: string | null;
}

§Properties

§
AppsCount?: number | null
[src]

The number of apps.

§
Arn?: string | null
[src]

The stack's ARN.

§
InstancesCount?: InstancesCount | null
[src]

An InstancesCount object with the number of instances in each status.

§
LayersCount?: number | null
[src]

The number of layers.

§
Name?: string | null
[src]

The stack name.

§
StackId?: string | null
[src]

The stack ID.