Interface S3Options

interface S3Options {
    bucketName: string;
    cacheTTL?: number;
    client: S3;
    prefix?: string;
}

Hierarchy

  • CloudFSOptions
    • S3Options

Properties

bucketName: string
cacheTTL?: number

How long (in seconds) before a fetched file should be considered invalid

3600 // 1 hour
client: S3
prefix?: string