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

CreateProjectRequest

import type { CreateProjectRequest } from "https://aws-api.deno.dev/v0.3/services/mobile.ts?docs=full";

Request structure used to request a project be created.

interface CreateProjectRequest {
contents?: Uint8Array | string | null;
name?: string | null;
region?: string | null;
snapshotId?: string | null;
}

§Properties

§
contents?: Uint8Array | string | null
[src]

ZIP or YAML file which contains configuration settings to be used when creating the project. This may be the contents of the file downloaded from the URL provided in an export project operation.

§
name?: string | null
[src]

Name of the project.

§
region?: string | null
[src]

Default region where project resources should be created.

§
snapshotId?: string | null
[src]

Unique identifier for an exported snapshot of project configuration. This snapshot identifier is included in the share URL when a project is exported.