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-bqtgftz736ft.deno.dev/v0.5/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 listJobRunAttempts(params: ListJobRunAttemptsRequest, opts?: client.RequestOptions): Promise<ListJobRunAttemptsResponse>;
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.

§

Creates and returns a URL that you can use to access the application UIs for a job run.

For jobs in a running state, the application UI is a live user interface such as the Spark or Tez web UI. For completed jobs, the application UI is a persistent application user interface such as the Spark History Server or persistent Tez UI.

Note: The URL is valid for one hour after you generate it. To access the application UI after that hour elapses, you must invoke the API again to generate a new URL.

§

Displays detailed information about a job run.

§

Lists applications based on a set of parameters.

§

Lists all attempt of a job run.

§

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 Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your Amazon Web Services 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