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

ServiceInstanceSummary

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

Summary data of an Proton service instance resource.

interface ServiceInstanceSummary {
arn: string;
createdAt: Date | number;
deploymentStatus: DeploymentStatus;
deploymentStatusMessage?: string | null;
environmentName: string;
lastDeploymentAttemptedAt: Date | number;
lastDeploymentSucceededAt: Date | number;
name: string;
serviceName: string;
templateMajorVersion: string;
templateMinorVersion: string;
templateName: string;
}

§Properties

§
arn: string
[src]

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

§
createdAt: Date | number
[src]

The time when the service instance was created.

§
deploymentStatus: DeploymentStatus
[src]

The service instance deployment status.

§
deploymentStatusMessage?: string | null
[src]

A service instance deployment status message.

§
environmentName: string
[src]

The name of the environment that the service instance was deployed into.

§
lastDeploymentAttemptedAt: Date | number
[src]

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

§
lastDeploymentSucceededAt: Date | number
[src]

The time when the service was last deployed successfully.

§
name: string
[src]

The name of the service instance.

§
serviceName: string
[src]

The name of the service that the service instance belongs to.

§
templateMajorVersion: string
[src]

The service instance template major version.

§
templateMinorVersion: string
[src]

The service instance template minor version.

§
templateName: string
[src]

The name of the service template.