Show / Hide Table of Contents

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 CfnDataRepositoryAssociation.IS3Property
Syntax (vb)
Public Interface CfnDataRepositoryAssociation.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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-s3.html

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

AutoExportPolicy

Describes a data repository association's automatic export policy.

AutoImportPolicy

Describes the data repository association's automatic import policy.

Properties

AutoExportPolicy

Describes a data repository association's automatic export policy.

object? AutoExportPolicy { get; }
Property Value

object

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-s3.html#cfn-fsx-datarepositoryassociation-s3-autoexportpolicy

Type union: either IResolvable or CfnDataRepositoryAssociation.IAutoExportPolicyProperty

AutoImportPolicy

Describes the data repository association's automatic import policy.

object? AutoImportPolicy { get; }
Property Value

object

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-s3.html#cfn-fsx-datarepositoryassociation-s3-autoimportpolicy

Type union: either IResolvable or CfnDataRepositoryAssociation.IAutoImportPolicyProperty

Back to top Generated by DocFX