interface CfnFileSystemMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnFileSystemMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnFileSystemMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnFileSystemMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnFileSystemMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnFileSystemMixinProps |
Properties for CfnFileSystemPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-filesystem.html
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 cfnFileSystemMixinProps: s3files.CfnFileSystemMixinProps = {
acceptBucketWarning: false,
bucket: 'bucket',
clientToken: 'clientToken',
kmsKeyId: 'kmsKeyId',
prefix: 'prefix',
roleArn: 'roleArn',
synchronizationConfiguration: {
expirationDataRules: [{
daysAfterLastAccess: 123,
}],
importDataRules: [{
prefix: 'prefix',
sizeLessThan: 123,
trigger: 'trigger',
}],
latestVersionNumber: 123,
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | boolean | IResolvable | |
| bucket? | string | |
| client | string | |
| kms | string | |
| prefix? | string | |
| role | string | |
| synchronization | IResolvable | Synchronization | |
| tags? | Cfn[] |
acceptBucketWarning?
Type:
boolean | IResolvable
(optional)
bucket?
Type:
string
(optional)
clientToken?
Type:
string
(optional)
kmsKeyId?
Type:
string
(optional)
prefix?
Type:
string
(optional)
roleArn?
Type:
string
(optional)
synchronizationConfiguration?
Type:
IResolvable | Synchronization
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript