Interface Project

interface Project {
    buildDir?: string;
    path: string;
    template?: string;
}

Properties

buildDir?: string

The path to a directory where the built artifacts are stored.

Only needed if Attini did not perform the SAM build and a custom build dir was specified with the --build-dir option. For more information, see the AWS SAM CLI build documentation.

path: string

The path to the SAM App in the Attini project.

The Path should always start from the root of the Attini project.

template?: string

The path and file name of AWS SAM template file.

Only needed if Attini did not perform the SAM build and a custom template name was specified with the --template option. For more information, see the AWS SAM CLI build documentation.

Generated using TypeDoc