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

ServiceInstance

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

Detailed data of an Proton service instance resource.

interface ServiceInstance {
arn: string;
createdAt: Date | number;
deploymentStatus: DeploymentStatus;
deploymentStatusMessage?: string | null;
environmentName: string;
lastDeploymentAttemptedAt: Date | number;
lastDeploymentSucceededAt: Date | number;
name: string;
serviceName: string;
spec?: string | null;
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]

The message associated with the service instance deployment status.

§
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 instance was last attempted.

§
lastDeploymentSucceededAt: Date | number
[src]

The time when the service instance 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.

§
spec?: string | null
[src]

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

§
templateMajorVersion: string
[src]

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

§
templateMinorVersion: string
[src]

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

§
templateName: string
[src]

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