FollowMode¶
-
class
aws_cdk.assets.
FollowMode
(value)¶ Bases:
enum.Enum
(deprecated) Symlink follow mode.
- Deprecated
see
core.SymlinkFollowMode
- Stability
deprecated
Attributes
-
ALWAYS
¶ (deprecated) Materialize all symlinks, whether they are internal or external to the source directory.
- Stability
deprecated
-
BLOCK_EXTERNAL
¶ (deprecated) Forbids source from having any symlinks pointing outside of the source tree.
This is the safest mode of operation as it ensures that copy operations won’t materialize files from the user’s file system. Internal symlinks are not followed.
If the copy operation runs into an external symlink, it will fail.
- Stability
deprecated
-
EXTERNAL
¶ (deprecated) Only follows symlinks that are external to the source directory.
- Stability
deprecated
-
NEVER
¶ (deprecated) Never follow symlinks.
- Stability
deprecated