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

DeploymentStyle

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

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

interface DeploymentStyle {
deploymentOption?: DeploymentOption | null;
deploymentType?: DeploymentType | null;
}

§Properties

§
deploymentOption?: DeploymentOption | null
[src]

Indicates whether to route deployment traffic behind a load balancer.

§
deploymentType?: DeploymentType | null
[src]

Indicates whether to run an in-place deployment or a blue/green deployment.