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

Service

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

Detailed data of an Proton service resource.

interface Service {
arn: string;
branchName?: string | null;
createdAt: Date | number;
description?: string | null;
lastModifiedAt: Date | number;
name: string;
pipeline?: ServicePipeline | null;
repositoryConnectionArn?: string | null;
repositoryId?: string | null;
spec: string;
status: ServiceStatus;
statusMessage?: string | null;
templateName: string;
}

§Properties

§
arn: string
[src]

The Amazon Resource Name (ARN) of the service.

§
branchName?: string | null
[src]

The name of the code repository branch that holds the code that's deployed in Proton.

§
createdAt: Date | number
[src]

The time when the service was created.

§
description?: string | null
[src]

A description of the service.

§
lastModifiedAt: Date | number
[src]

The time when the service was last modified.

§
name: string
[src]

The name of the service.

§
pipeline?: ServicePipeline | null
[src]

The service pipeline detail data.

§
repositoryConnectionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.

§
repositoryId?: string | null
[src]

The ID of the source code repository.

§
spec: string
[src]

The formatted specification that defines the service.

§

The status of the service.

§
statusMessage?: string | null
[src]

A service status message.

§
templateName: string
[src]

The name of the service template.