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

InstanceConfiguration

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

Describes the runtime configuration of an App Runner service instance (scaling unit).

interface InstanceConfiguration {
Cpu?: string | null;
InstanceRoleArn?: string | null;
Memory?: string | null;
}

§Properties

§
Cpu?: string | null
[src]

The number of CPU units reserved for each instance of your App Runner service.

Default: 1 vCPU

§
InstanceRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of an IAM role that provides permissions to your App Runner service. These are permissions that your code needs when it calls any Amazon Web Services APIs.

§
Memory?: string | null
[src]

The amount of memory, in MB or GB, reserved for each instance of your App Runner service.

Default: 2 GB