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

CreateServiceTemplateVersionInput

import type { CreateServiceTemplateVersionInput } from "https://aws-api.deno.dev/v0.4/services/proton.ts?docs=full";
interface CreateServiceTemplateVersionInput {
clientToken?: string | null;
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplateInput[];
description?: string | null;
majorVersion?: string | null;
supportedComponentSources?: ServiceTemplateSupportedComponentSourceType[] | null;
tags?: Tag[] | null;
templateName: string;
}

§Properties

§
clientToken?: string | null
[src]

When included, if two identical requests are made with the same client token, Proton returns the service template version that the first request created.

§
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplateInput[]
[src]

An array of environment template objects that are compatible with the new service template version. A service instance based on this service template version can run in environments based on compatible templates.

§
description?: string | null
[src]

A description of the new version of a service template.

§
majorVersion?: string | null
[src]

To create a new minor version of the service template, include a major Version.

To create a new major and minor version of the service template, exclude major Version.

§

An object that includes the template bundle S3 bucket path and name for the new version of a service template.

§
supportedComponentSources?: ServiceTemplateSupportedComponentSourceType[] | null
[src]

An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version.

For more information about components, see Proton components in the Proton User Guide.

§
tags?: Tag[] | null
[src]

An optional list of metadata items that you can associate with the Proton service template version. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

§
templateName: string
[src]

The name of the service template.