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

EMRServerless

import { EMRServerless } from "https://aws-api.deno.dev/v0.4/services/emrserverless.ts?docs=full";
class EMRServerless {
constructor(apiFactory: client.ApiFactory);
async cancelJobRun(params: CancelJobRunRequest, opts?: client.RequestOptions): Promise<CancelJobRunResponse>;
async createApplication(params: CreateApplicationRequest, opts?: client.RequestOptions): Promise<CreateApplicationResponse>;
async deleteApplication(params: DeleteApplicationRequest, opts?: client.RequestOptions): Promise<void>;
async getApplication(params: GetApplicationRequest, opts?: client.RequestOptions): Promise<GetApplicationResponse>;
async getDashboardForJobRun(params: GetDashboardForJobRunRequest, opts?: client.RequestOptions): Promise<GetDashboardForJobRunResponse>;
async getJobRun(params: GetJobRunRequest, opts?: client.RequestOptions): Promise<GetJobRunResponse>;
async listApplications(params?: ListApplicationsRequest, opts?: client.RequestOptions): Promise<ListApplicationsResponse>;
async listJobRuns(params: ListJobRunsRequest, opts?: client.RequestOptions): Promise<ListJobRunsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async startApplication(params: StartApplicationRequest, opts?: client.RequestOptions): Promise<void>;
async startJobRun(params: StartJobRunRequest, opts?: client.RequestOptions): Promise<StartJobRunResponse>;
async stopApplication(params: StopApplicationRequest, opts?: client.RequestOptions): Promise<void>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async updateApplication(params: UpdateApplicationRequest, opts?: client.RequestOptions): Promise<UpdateApplicationResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§

Cancels a job run.

§

Creates an application.

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

Deletes an application. An application has to be in a stopped or created state in order to be deleted.

§

Displays detailed information about a specified application.

§

Returns a URL to access the job run dashboard.

§

Displays detailed information about a job run.

§

Lists applications based on a set of parameters.

§

Lists job runs based on a set of parameters.

§

Lists the tags assigned to the resources.

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

Starts a specified application and initializes initial capacity if configured.

§

Starts a job run.

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

Stops a specified application and releases initial capacity if configured. All scheduled and running jobs must be completed or cancelled before stopping an application.

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

Assigns tags to resources. A tag is a label that you assign to an AWS resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your AWS resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it.

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

Removes tags from resources.

§

Updates a specified application. An application has to be in a stopped or created state in order to be updated.

§Static Properties