@resistdesign/voltra
    Preparing search index...

    Type Alias AddCloudFunctionConfig

    Configuration for the cloud function pack.

    type AddCloudFunctionConfig = {
        code?: AWS.Lambda.Function.Code;
        environment?: AWS.Lambda.Function.Environment;
        handler?: any;
        id: string;
        memorySize?: number;
        policies?: AWS.IAM.Role.Policy[];
        runtime?: CloudFunctionRuntime;
        timeout?: any;
    }
    Index

    Properties

    code?: AWS.Lambda.Function.Code

    Lambda function code.

    environment?: AWS.Lambda.Function.Environment

    Lambda environment configuration.

    handler?: any

    Function handler entrypoint.

    id: string

    Base id for the function resources.

    memorySize?: number

    Lambda function memory size in MB.

    You can configure memory between 128 MB and 10,240 MB in 1-MB increments.

    128
    
    policies?: AWS.IAM.Role.Policy[]

    IAM policy statements to attach to the role.

    Lambda runtime.

    timeout?: any

    Function timeout in seconds.