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

FunctionConfigurationEnvironment

import type { FunctionConfigurationEnvironment } from "https://aws-api.deno.dev/v0.3/services/greengrass.ts?docs=full";

The environment configuration of the function.

interface FunctionConfigurationEnvironment {
AccessSysfs?: boolean | null;
Execution?: FunctionExecutionConfig | null;
ResourceAccessPolicies?: ResourceAccessPolicy[] | null;
Variables?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
AccessSysfs?: boolean | null
[src]

If true, the Lambda function is allowed to access the host's /sys folder. Use this when the Lambda function needs to read device information from /sys. This setting applies only when you run the Lambda function in a Greengrass container.

§
Execution?: FunctionExecutionConfig | null
[src]

Configuration related to executing the Lambda function

§
ResourceAccessPolicies?: ResourceAccessPolicy[] | null
[src]

A list of the resources, with their permissions, to which the Lambda function will be granted access. A Lambda function can have at most 10 resources. ResourceAccessPolicies apply only when you run the Lambda function in a Greengrass container.

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

Environment variables for the Lambda function's configuration.