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

DeploymentConfigInfo

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

Information about a deployment configuration.

interface DeploymentConfigInfo {
computePlatform?: ComputePlatform | null;
createTime?: Date | number | null;
deploymentConfigId?: string | null;
deploymentConfigName?: string | null;
minimumHealthyHosts?: MinimumHealthyHosts | null;
trafficRoutingConfig?: TrafficRoutingConfig | null;
}

§Properties

§
computePlatform?: ComputePlatform | null
[src]

The destination platform type for the deployment (Lambda, Server, or ECS).

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

The time at which the deployment configuration was created.

§
deploymentConfigId?: string | null
[src]

The deployment configuration ID.

§
deploymentConfigName?: string | null
[src]

The deployment configuration name.

§
minimumHealthyHosts?: MinimumHealthyHosts | null
[src]

Information about the number or percentage of minimum healthy instance.

§
trafficRoutingConfig?: TrafficRoutingConfig | null
[src]

The configuration that specifies how the deployment traffic is routed. Used for deployments with a Lambda or ECS compute platform only.