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

Application

import type { Application } from "https://aws-api.deno.dev/v0.4/services/emrserverless.ts?docs=full";

Information about an application. EMR Serverless uses applications to run jobs.

interface Application {
applicationId: string;
architecture?: Architecture | null;
arn: string;
autoStartConfiguration?: AutoStartConfig | null;
autoStopConfiguration?: AutoStopConfig | null;
createdAt: Date | number;
imageConfiguration?: ImageConfiguration | null;
initialCapacity?: {
[key: string]: InitialCapacityConfig | null | undefined;
}
| null;
maximumCapacity?: MaximumAllowedResources | null;
name?: string | null;
networkConfiguration?: NetworkConfiguration | null;
releaseLabel: string;
stateDetails?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type: string;
updatedAt: Date | number;
workerTypeSpecifications?: {
[key: string]: WorkerTypeSpecification | null | undefined;
}
| null;
}

§Properties

§
applicationId: string
[src]

The ID of the application.

§
architecture?: Architecture | null
[src]

The CPU architecture of an application.

§
arn: string
[src]

The ARN of the application.

§
autoStartConfiguration?: AutoStartConfig | null
[src]

The configuration for an application to automatically start on job submission.

§
autoStopConfiguration?: AutoStopConfig | null
[src]

The configuration for an application to automatically stop after a certain amount of time being idle.

§
createdAt: Date | number
[src]

The date and time when the application run was created.

§
imageConfiguration?: ImageConfiguration | null
[src]

The image configuration applied to all worker types.

§
initialCapacity?: {
[key: string]: InitialCapacityConfig | null | undefined;
}
| null
[src]

The initial capacity of the application.

§
maximumCapacity?: MaximumAllowedResources | null
[src]

The maximum capacity of the application. This is cumulative across all workers at any given point in time during the lifespan of the application is created. No new resources will be created once any one of the defined limits is hit.

§
name?: string | null
[src]

The name of the application.

§
networkConfiguration?: NetworkConfiguration | null
[src]

The network configuration for customer VPC connectivity for the application.

§
releaseLabel: string
[src]

The EMR release associated with the application.

§

The state of the application.

§
stateDetails?: string | null
[src]

The state details of the application.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags assigned to the application.

§
type: string
[src]

The type of application, such as Spark or Hive.

§
updatedAt: Date | number
[src]

The date and time when the application run was last updated.

§
workerTypeSpecifications?: {
[key: string]: WorkerTypeSpecification | null | undefined;
}
| null
[src]

The specification applied to each worker type.