package awsfsx // 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 "github.com/aws/aws-cdk-go/awscdk" // // s3Property := &S3Property{ // AutoExportPolicy: &AutoExportPolicyProperty{ // Events: []*string{ // jsii.String("events"), // }, // }, // AutoImportPolicy: &AutoImportPolicyProperty{ // Events: []*string{ // jsii.String("events"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-s3.html // type CfnDataRepositoryAssociation_S3Property struct { // Describes a data repository association's automatic export policy. // // 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 // AutoExportPolicy interface{} `field:"optional" json:"autoExportPolicy" yaml:"autoExportPolicy"` // Describes the data repository association's automatic import policy. // // 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 // AutoImportPolicy interface{} `field:"optional" json:"autoImportPolicy" yaml:"autoImportPolicy"` }