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

CreateApplicationRequest

import type { CreateApplicationRequest } from "https://aws-api.deno.dev/v0.4/services/emrserverless.ts?docs=full";
interface CreateApplicationRequest {
architecture?: Architecture | null;
autoStartConfiguration?: AutoStartConfig | null;
autoStopConfiguration?: AutoStopConfig | null;
clientToken: string;
imageConfiguration?: ImageConfigurationInput | null;
initialCapacity?: {
[key: string]: InitialCapacityConfig | null | undefined;
}
| null;
maximumCapacity?: MaximumAllowedResources | null;
name?: string | null;
networkConfiguration?: NetworkConfiguration | null;
releaseLabel: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type: string;
workerTypeSpecifications?: {
[key: string]: WorkerTypeSpecificationInput | null | undefined;
}
| null;
}

§Properties

§
architecture?: Architecture | null
[src]

The CPU architecture of an 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.

§
clientToken: string
[src]

The client idempotency token of the application to create. Its value must be unique for each request.

§
imageConfiguration?: ImageConfigurationInput | null
[src]

The image configuration for all worker types. You can either set this parameter or imageConfiguration for each worker type in workerTypeSpecifications.

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

The capacity to initialize when the application is created.

§
maximumCapacity?: MaximumAllowedResources | null
[src]

The maximum capacity to allocate when the application is created. This is cumulative across all workers at any given point in time, not just when an 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.

§
releaseLabel: string
[src]

The EMR release associated with the application.

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

The tags assigned to the application.

§
type: string
[src]

The type of application you want to start, such as Spark or Hive.

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

The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.