Skip to content

Latest commit

 

History

History
120 lines (57 loc) · 1.71 KB

faastjs.awsoptions.md

File metadata and controls

120 lines (57 loc) · 1.71 KB
id title hide_title
faastjs.awsoptions
AwsOptions interface
true

faastjs > AwsOptions

AwsOptions interface

AWS-specific options for faastAws().

Signature:

export interface AwsOptions extends CommonOptions 

Extends: CommonOptions

Properties

Property

Modifiers

Type

Description

awsClientFactory?

AwsClientFactory

(Optional) AWS service factories. See AwsClientFactory.

awsLambdaOptions?

Partial<CreateFunctionRequest>

(Optional) Additional options to pass to AWS Lambda creation. See CreateFunction.

region?

AwsRegion

(Optional) The region to create resources in. Garbage collection is also limited to this region. Default: "us-west-2".

RoleName?

string

(Optional) The role that the lambda function will assume when executing user code. Default: "faast-cached-lambda-role". Rarely used.