aws-cdk-lib.pipelines.FileSetLocation

interface FileSetLocation

LanguageType name
.NETAmazon.CDK.Pipelines.FileSetLocation
Gogithub.com/aws/aws-cdk-go/awscdk/v2/pipelines#FileSetLocation
Javasoftware.amazon.awscdk.pipelines.FileSetLocation
Pythonaws_cdk.pipelines.FileSetLocation
TypeScript (source)aws-cdk-lib » pipelines » FileSetLocation

Location of a FileSet consumed or produced by a ShellStep.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { pipelines } from 'aws-cdk-lib';

declare const fileSet: pipelines.FileSet;
const fileSetLocation: pipelines.FileSetLocation = {
  directory: 'directory',
  fileSet: fileSet,
};

Properties

NameTypeDescription
directorystringThe (relative) directory where the FileSet is found.
fileSetFileSetThe FileSet object.

directory

Type: string

The (relative) directory where the FileSet is found.


fileSet

Type: FileSet

The FileSet object.