This is the new CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::S3Files::FileSystem ImportDataRule
Specifies a rule that controls how data is imported from S3 into the file system.
Syntax
To declare this entity in your CloudFormation template, use the following syntax:
JSON
{ "Prefix" :String, "SizeLessThan" :Integer, "Trigger" :String}
YAML
Prefix:StringSizeLessThan:IntegerTrigger:String
Properties
Prefix-
The S3 key prefix that scopes this import rule. Only objects with keys beginning with this prefix are subject to the rule.
Required: Yes
Type: String
Pattern:
^(|.*/)$Minimum:
0Maximum:
1024Update requires: No interruption
SizeLessThan-
The upper size limit in bytes for this import rule. Only objects with a size strictly less than this value will have data imported into the file system.
Required: Yes
Type: Integer
Minimum:
0Maximum:
52673613135872Update requires: No interruption
Trigger-
The event that triggers data import. Valid values are
ON_DIRECTORY_FIRST_ACCESS(import when a directory is first accessed) andON_FILE_ACCESS(import when a file is accessed).Required: Yes
Type: String
Allowed values:
ON_DIRECTORY_FIRST_ACCESS | ON_FILE_ACCESSUpdate requires: No interruption