interface FileSetLocation
Language | Type name |
---|---|
.NET | Amazon.CDK.Pipelines.FileSetLocation |
Go | github.com/aws/aws-cdk-go/awscdk/v2/pipelines#FileSetLocation |
Java | software.amazon.awscdk.pipelines.FileSetLocation |
Python | aws_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
Name | Type | Description |
---|---|---|
directory | string | The (relative) directory where the FileSet is found. |
file | File | The FileSet object. |
directory
Type:
string
The (relative) directory where the FileSet is found.
fileSet
Type:
File
The FileSet object.