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

Mobile

import { Mobile } from "https://aws-api.deno.dev/v0.3/services/mobile.ts?docs=full";
class Mobile {
constructor(apiFactory: client.ApiFactory);
async createProject(params?: CreateProjectRequest, opts?: client.RequestOptions): Promise<CreateProjectResult>;
async deleteProject(params: DeleteProjectRequest, opts?: client.RequestOptions): Promise<DeleteProjectResult>;
async describeBundle(params: DescribeBundleRequest, opts?: client.RequestOptions): Promise<DescribeBundleResult>;
async describeProject(params: DescribeProjectRequest, opts?: client.RequestOptions): Promise<DescribeProjectResult>;
async exportBundle(params: ExportBundleRequest, opts?: client.RequestOptions): Promise<ExportBundleResult>;
async exportProject(params: ExportProjectRequest, opts?: client.RequestOptions): Promise<ExportProjectResult>;
async listBundles(params?: ListBundlesRequest, opts?: client.RequestOptions): Promise<ListBundlesResult>;
async listProjects(params?: ListProjectsRequest, opts?: client.RequestOptions): Promise<ListProjectsResult>;
async updateProject(params: UpdateProjectRequest, opts?: client.RequestOptions): Promise<UpdateProjectResult>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new Mobile(apiFactory: client.ApiFactory)
[src]

§Methods

§
createProject(params?: CreateProjectRequest, opts?: client.RequestOptions): Promise<CreateProjectResult>
[src]

Creates an AWS Mobile Hub project.

§

Delets a project in AWS Mobile Hub.

§

Get the bundle details for the requested bundle id.

§

Gets details about a project in AWS Mobile Hub.

§
exportBundle(params: ExportBundleRequest, opts?: client.RequestOptions): Promise<ExportBundleResult>
[src]

Generates customized software development kit (SDK) and or tool packages used to integrate mobile web or mobile app clients with backend AWS resources.

§

Exports project configuration to a snapshot which can be downloaded and shared. Note that mobile app push credentials are encrypted in exported projects, so they can only be shared successfully within the same AWS account.

§
listBundles(params?: ListBundlesRequest, opts?: client.RequestOptions): Promise<ListBundlesResult>
[src]

List all available bundles.

§
listProjects(params?: ListProjectsRequest, opts?: client.RequestOptions): Promise<ListProjectsResult>
[src]

Lists projects in AWS Mobile Hub.

§

Update an existing project.

§Static Properties