interface SynchronizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Files.CfnFileSystem.SynchronizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3files#CfnFileSystem_SynchronizationConfigurationProperty |
Java | software.amazon.awscdk.services.s3files.CfnFileSystem.SynchronizationConfigurationProperty |
Python | aws_cdk.aws_s3files.CfnFileSystem.SynchronizationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_s3files » CfnFileSystem » SynchronizationConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3files as s3files } from 'aws-cdk-lib';
const synchronizationConfigurationProperty: s3files.CfnFileSystem.SynchronizationConfigurationProperty = {
expirationDataRules: [{
daysAfterLastAccess: 123,
}],
importDataRules: [{
prefix: 'prefix',
sizeLessThan: 123,
trigger: 'trigger',
}],
// the properties below are optional
latestVersionNumber: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| expiration | IResolvable | (IResolvable | Expiration)[] | |
| import | IResolvable | (IResolvable | Import)[] | |
| latest | number |
expirationDataRules
Type:
IResolvable | (IResolvable | Expiration)[]
importDataRules
Type:
IResolvable | (IResolvable | Import)[]
latestVersionNumber?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript