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

CreateApplicationVersionRequest

import type { CreateApplicationVersionRequest } from "https://aws-api.deno.dev/v0.4/services/serverlessapplicationrepository.ts?docs=full";
interface CreateApplicationVersionRequest {
ApplicationId: string;
SemanticVersion: string;
SourceCodeArchiveUrl?: string | null;
SourceCodeUrl?: string | null;
TemplateBody?: string | null;
TemplateUrl?: string | null;
}

§Properties

§
ApplicationId: string
[src]

The Amazon Resource Name (ARN) of the application.

§
SemanticVersion: string
[src]

The semantic version of the new version.

§
SourceCodeArchiveUrl?: string | null
[src]

A link to the S3 object that contains the ZIP archive of the source code for this version of your application.

Maximum size 50 MB

§
SourceCodeUrl?: string | null
[src]

A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.

§
TemplateBody?: string | null
[src]

The raw packaged AWS SAM template of your application.

§
TemplateUrl?: string | null
[src]

A link to the packaged AWS SAM template of your application.