public static interface CfnDataRepositoryAssociation.S3Property
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataRepositoryAssociation.S3Property.Builder
A builder for
CfnDataRepositoryAssociation.S3Property |
static class |
CfnDataRepositoryAssociation.S3Property.Jsii$Proxy
An implementation for
CfnDataRepositoryAssociation.S3Property |
Modifier and Type | Method and Description |
---|---|
static CfnDataRepositoryAssociation.S3Property.Builder |
builder() |
default java.lang.Object |
getAutoExportPolicy()
Describes a data repository association's automatic export policy.
|
default java.lang.Object |
getAutoImportPolicy()
Describes the data repository association's automatic import policy.
|
default java.lang.Object getAutoExportPolicy()
The AutoExportPolicy
defines the types of updated objects on the file system that will be automatically exported to the data repository. As you create, modify, or delete files, Amazon FSx for Lustre automatically exports the defined changes asynchronously once your application finishes modifying the file.
This AutoExportPolicy
is supported only for Amazon FSx for Lustre file systems with the Persistent_2
deployment type.
default java.lang.Object getAutoImportPolicy()
The AutoImportPolicy defines how Amazon FSx keeps your file metadata and directory listings up to date by importing changes to your Amazon FSx for Lustre file system as you modify objects in a linked S3 bucket.
The AutoImportPolicy
is supported only for Amazon FSx for Lustre file systems with the Persistent_2
deployment type.
static CfnDataRepositoryAssociation.S3Property.Builder builder()