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

S3DataRepositoryConfiguration

import type { S3DataRepositoryConfiguration } from "https://aws-api.deno.dev/v0.4/services/fsx.ts?docs=full";

The configuration for an Amazon S3 data repository linked to an Amazon FSx for Lustre file system with a data repository association. The configuration consists of an AutoImportPolicy that defines which file events on the data repository are automatically imported to the file system and an AutoExportPolicy that defines which file events on the file system are automatically exported to the data repository. File events are when files or directories are added, changed, or deleted on the file system or the data repository.

Note: Data repository associations on Amazon File Cache don't use S3DataRepositoryConfiguration because they don't support automatic import or automatic export.

interface S3DataRepositoryConfiguration {
AutoExportPolicy?: AutoExportPolicy | null;
AutoImportPolicy?: AutoImportPolicy | null;
}

§Properties

§
AutoExportPolicy?: AutoExportPolicy | null
[src]

Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.

§
AutoImportPolicy?: AutoImportPolicy | null
[src]

Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.