Class FileSetLocation

Location of a FileSet consumed or produced by a ShellStep.

Inheritance

FileSetLocation

Implements
Inherited Members
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FileSetLocation : IFileSetLocation
Syntax (vb)
Public Class FileSetLocation Implements IFileSetLocation
Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Pipelines;

            FileSet fileSet;

            var fileSetLocation = new FileSetLocation {
                Directory = "directory",
                FileSet = fileSet
            };

Synopsis

Constructors

Properties

Directory

The (relative) directory where the FileSet is found.

FileSet

The FileSet object.

Constructors

FileSetLocation()

Location of a FileSet consumed or produced by a ShellStep.

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Pipelines;

            FileSet fileSet;

            var fileSetLocation = new FileSetLocation {
                Directory = "directory",
                FileSet = fileSet
            };

Properties

Directory

The (relative) directory where the FileSet is found.

public string Directory { get; set; }
Property Value

string

FileSet

The FileSet object.

public FileSet FileSet { get; set; }
Property Value

FileSet

Implements