Interface CfnDataRepositoryAssociation.IS3Property
The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association.
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IS3Property
Syntax (vb)
Public Interface IS3Property
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FSx;
var s3Property = new S3Property {
AutoExportPolicy = new AutoExportPolicyProperty {
Events = new [] { "events" }
},
AutoImportPolicy = new AutoImportPolicyProperty {
Events = new [] { "events" }
}
};
Synopsis
Properties
Auto |
Describes a data repository association's automatic export policy. |
Auto |
Describes the data repository association's automatic import policy. |
Properties
AutoExportPolicy
Describes a data repository association's automatic export policy.
virtual object AutoExportPolicy { get; }
Property Value
System.
Remarks
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.
The AutoExportPolicy
is only supported on Amazon FSx for Lustre file systems with a data repository association.
AutoImportPolicy
Describes the data repository association's automatic import policy.
virtual object AutoImportPolicy { get; }
Property Value
System.
Remarks
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 only supported on Amazon FSx for Lustre file systems with a data repository association.