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

CloudFormationTarget

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

Information about the target to be updated by an CloudFormation blue/green deployment. This target type is used for all deployments initiated by a CloudFormation stack update.

interface CloudFormationTarget {
deploymentId?: string | null;
lastUpdatedAt?: Date | number | null;
lifecycleEvents?: LifecycleEvent[] | null;
resourceType?: string | null;
status?: TargetStatus | null;
targetId?: string | null;
targetVersionWeight?: number | null;
}

§Properties

§
deploymentId?: string | null
[src]

The unique ID of an CloudFormation blue/green deployment.

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

The date and time when the target application was updated by an CloudFormation blue/green deployment.

§
lifecycleEvents?: LifecycleEvent[] | null
[src]

The lifecycle events of the CloudFormation blue/green deployment to this target application.

§
resourceType?: string | null
[src]

The resource type for the CloudFormation blue/green deployment.

§
status?: TargetStatus | null
[src]

The status of an CloudFormation blue/green deployment's target application.

§
targetId?: string | null
[src]

The unique ID of a deployment target that has a type of CloudFormationTarget.

§
targetVersionWeight?: number | null
[src]

The percentage of production traffic that the target version of an CloudFormation blue/green deployment receives.