interface SynchronizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnFileSystemPropsMixin.SynchronizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnFileSystemPropsMixin_SynchronizationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnFileSystemPropsMixin.SynchronizationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnFileSystemPropsMixin.SynchronizationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnFileSystemPropsMixin » 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/cfn-property-mixins';
const synchronizationConfigurationProperty: s3files.CfnFileSystemPropsMixin.SynchronizationConfigurationProperty = {
expirationDataRules: [{
daysAfterLastAccess: 123,
}],
importDataRules: [{
prefix: 'prefix',
sizeLessThan: 123,
trigger: 'trigger',
}],
latestVersionNumber: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| expiration | IResolvable | (IResolvable | Expiration)[] | |
| import | IResolvable | (IResolvable | Import)[] | |
| latest | number |
expirationDataRules?
Type:
IResolvable | (IResolvable | Expiration)[]
(optional)
importDataRules?
Type:
IResolvable | (IResolvable | Import)[]
(optional)
latestVersionNumber?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript