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

DeploymentTarget

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

Information about the deployment target.

interface DeploymentTarget {
cloudFormationTarget?: CloudFormationTarget | null;
deploymentTargetType?: DeploymentTargetType | null;
ecsTarget?: ECSTarget | null;
instanceTarget?: InstanceTarget | null;
lambdaTarget?: LambdaTarget | null;
}

§Properties

§
cloudFormationTarget?: CloudFormationTarget | null
[src]
§
deploymentTargetType?: DeploymentTargetType | null
[src]

The deployment type that is specific to the deployment's compute platform or deployments initiated by a CloudFormation stack update.

§
ecsTarget?: ECSTarget | null
[src]

Information about the target for a deployment that uses the Amazon ECS compute platform.

§
instanceTarget?: InstanceTarget | null
[src]

Information about the target for a deployment that uses the EC2/On-premises compute platform.

§
lambdaTarget?: LambdaTarget | null
[src]

Information about the target for a deployment that uses the AWS Lambda compute platform.