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

DeploymentSummary

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

Information about the deployment.

interface DeploymentSummary {
CompletedAt?: Date | number | null;
ConfigurationName?: string | null;
ConfigurationVersion?: string | null;
DeploymentDurationInMinutes?: number | null;
DeploymentNumber?: number | null;
FinalBakeTimeInMinutes?: number | null;
GrowthFactor?: number | null;
GrowthType?: GrowthType | null;
PercentageComplete?: number | null;
StartedAt?: Date | number | null;
State?: DeploymentState | null;
}

§Properties

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

Time the deployment completed.

§
ConfigurationName?: string | null
[src]

The name of the configuration.

§
ConfigurationVersion?: string | null
[src]

The version of the configuration.

§
DeploymentDurationInMinutes?: number | null
[src]

Total amount of time the deployment lasted.

§
DeploymentNumber?: number | null
[src]

The sequence number of the deployment.

§
FinalBakeTimeInMinutes?: number | null
[src]

The amount of time that AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic rollback.

§
GrowthFactor?: number | null
[src]

The percentage of targets to receive a deployed configuration during each interval.

§
GrowthType?: GrowthType | null
[src]

The algorithm used to define how percentage grows over time.

§
PercentageComplete?: number | null
[src]

The percentage of targets for which the deployment is available.

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

Time the deployment started.

§
State?: DeploymentState | null
[src]

The state of the deployment.