Interface CfnDataRepositoryAssociation.S3Property

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataRepositoryAssociation.S3Property.Jsii$Proxy
Enclosing class:
CfnDataRepositoryAssociation

@Stability(Stable) public static interface CfnDataRepositoryAssociation.S3Property extends software.amazon.jsii.JsiiSerializable
The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association.

The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.fsx.*;
 S3Property s3Property = S3Property.builder()
         .autoExportPolicy(AutoExportPolicyProperty.builder()
                 .events(List.of("events"))
                 .build())
         .autoImportPolicy(AutoImportPolicyProperty.builder()
                 .events(List.of("events"))
                 .build())
         .build();
 

See Also: