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

ServicePipeline

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

Detailed data of an Proton service instance pipeline resource.

interface ServicePipeline {
arn: string;
createdAt: Date | number;
deploymentStatus: DeploymentStatus;
deploymentStatusMessage?: string | null;
lastDeploymentAttemptedAt: Date | number;
lastDeploymentSucceededAt: Date | number;
spec?: string | null;
templateMajorVersion: string;
templateMinorVersion: string;
templateName: string;
}

§Properties

§
arn: string
[src]

The Amazon Resource Name (ARN) of the service pipeline.

§
createdAt: Date | number
[src]

The time when the service pipeline was created.

§
deploymentStatus: DeploymentStatus
[src]

The deployment status of the service pipeline.

§
deploymentStatusMessage?: string | null
[src]

A service pipeline deployment status message.

§
lastDeploymentAttemptedAt: Date | number
[src]

The time when a deployment of the service pipeline was last attempted.

§
lastDeploymentSucceededAt: Date | number
[src]

The time when the service pipeline was last deployed successfully.

§
spec?: string | null
[src]

The service spec that was used to create the service pipeline.

§
templateMajorVersion: string
[src]

The major version of the service template that was used to create the service pipeline.

§
templateMinorVersion: string
[src]

The minor version of the service template that was used to create the service pipeline.

§
templateName: string
[src]

The name of the service template that was used to create the service pipeline.