FileExtractionRuleInput
The rule specifying what files to extract from a zip file and where to store them.
input FileExtractionRuleInput {
include: FileGlob!
exclude: [FileGlob!]
destination: TemplatedURL!
}
Fields
FileExtractionRuleInput.include
● FileGlob!
non-null scalar
A glob pattern defining the files to select from directory.
FileExtractionRuleInput.exclude
● [FileGlob!]
list scalar
An optional list of glob patterns defining files to exclude from the included selection.
FileExtractionRuleInput.destination
● TemplatedURL!
non-null scalar
A templated URL that will be filled using the strings captured by the 'include' FileGlob, as variables 1, 2, 3, ...
Member of
ExtractFilesInput
input