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

ServerlessApplicationRepository

import { ServerlessApplicationRepository } from "https://aws-api.deno.dev/v0.4/services/serverlessapplicationrepository.ts?docs=full";
class ServerlessApplicationRepository {
constructor(apiFactory: client.ApiFactory);
async createApplication(params: CreateApplicationRequest, opts?: client.RequestOptions): Promise<CreateApplicationResponse>;
async createApplicationVersion(params: CreateApplicationVersionRequest, opts?: client.RequestOptions): Promise<CreateApplicationVersionResponse>;
async createCloudFormationChangeSet(params: CreateCloudFormationChangeSetRequest, opts?: client.RequestOptions): Promise<CreateCloudFormationChangeSetResponse>;
async createCloudFormationTemplate(params: CreateCloudFormationTemplateRequest, opts?: client.RequestOptions): Promise<CreateCloudFormationTemplateResponse>;
async deleteApplication(params: DeleteApplicationRequest, opts?: client.RequestOptions): Promise<void>;
async getApplication(params: GetApplicationRequest, opts?: client.RequestOptions): Promise<GetApplicationResponse>;
async getApplicationPolicy(params: GetApplicationPolicyRequest, opts?: client.RequestOptions): Promise<GetApplicationPolicyResponse>;
async getCloudFormationTemplate(params: GetCloudFormationTemplateRequest, opts?: client.RequestOptions): Promise<GetCloudFormationTemplateResponse>;
async listApplicationDependencies(params: ListApplicationDependenciesRequest, opts?: client.RequestOptions): Promise<ListApplicationDependenciesResponse>;
async listApplications(params?: ListApplicationsRequest, opts?: client.RequestOptions): Promise<ListApplicationsResponse>;
async listApplicationVersions(params: ListApplicationVersionsRequest, opts?: client.RequestOptions): Promise<ListApplicationVersionsResponse>;
async putApplicationPolicy(params: PutApplicationPolicyRequest, opts?: client.RequestOptions): Promise<PutApplicationPolicyResponse>;
async unshareApplication(params: UnshareApplicationRequest, opts?: client.RequestOptions): Promise<void>;
async updateApplication(params: UpdateApplicationRequest, opts?: client.RequestOptions): Promise<UpdateApplicationResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§

Creates an application, optionally including an AWS SAM file to create the first application version in the same call.

§

Creates an application version.

§

Creates an AWS CloudFormation change set for the given application.

§

Creates an AWS CloudFormation template.

§
deleteApplication(params: DeleteApplicationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the specified application.

§

Gets the specified application.

§

Retrieves the policy for the application.

§

Gets the specified AWS CloudFormation template.

§

Retrieves the list of applications nested in the containing application.

§

Lists applications owned by the requester.

§

Lists versions for the specified application.

§

Sets the permission policy for an application. For the list of actions supported for this operation, see Application Permissions .

§
unshareApplication(params: UnshareApplicationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Unshares an application from an AWS Organization.

This operation can be called only from the organization's master account.

§

Updates the specified application.

§Static Properties