Show / Hide Table of Contents

Class FollowMode

(deprecated) Symlink follow mode.

Inheritance
System.Object
FollowMode
Namespace: Amazon.CDK.Assets
Assembly: Amazon.CDK.Assets.dll
Syntax (csharp)
public sealed class FollowMode : Enum
Syntax (vb)
Public NotInheritable Class FollowMode
    Inherits

     Enum
Remarks

Stability: Deprecated

Synopsis

Fields

ALWAYS

(deprecated) Materialize all symlinks, whether they are internal or external to the source directory.

BLOCK_EXTERNAL

(deprecated) Forbids source from having any symlinks pointing outside of the source tree.

EXTERNAL

(deprecated) Only follows symlinks that are external to the source directory.

NEVER

(deprecated) Never follow symlinks.

value__

Fields

ALWAYS

(deprecated) Materialize all symlinks, whether they are internal or external to the source directory.

public const FollowMode ALWAYS
Field Value
Type Description
FollowMode
Remarks

Stability: Deprecated

BLOCK_EXTERNAL

(deprecated) Forbids source from having any symlinks pointing outside of the source tree.

public const FollowMode BLOCK_EXTERNAL
Field Value
Type Description
FollowMode
Remarks

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.

public const FollowMode EXTERNAL
Field Value
Type Description
FollowMode
Remarks

Stability: Deprecated

NEVER

(deprecated) Never follow symlinks.

public const FollowMode NEVER
Field Value
Type Description
FollowMode
Remarks

Stability: Deprecated

value__

public int value__
Field Value
Type Description
System.Int32
Back to top Generated by DocFX