2.0.0b35
Input
Package: flyte.app
Input for application.
class Input(
name: str,
value: InputTypes | _DelayedValue,
env_var: Optional[str],
download: bool,
mount: Optional[str],
ignore_patterns: list[str],
)| Parameter | Type | Description |
|---|---|---|
name |
str |
Name of input. |
value |
InputTypes | _DelayedValue |
Value for input. |
env_var |
Optional[str] |
Environment name to set the value in the serving environment. |
download |
bool |
When True, the input will be automatically downloaded. This only works if the value refers to an item in a object store. i.e. s3://... |
mount |
Optional[str] |
If value is a directory, then the directory will be available at mount. If value is a file, then the file will be downloaded into the mount directory. |
ignore_patterns |
list[str] |
If value is a directory, then this is a list of glob patterns to ignore. |