FileSetLocation
- class aws_cdk.pipelines.FileSetLocation(*, directory, file_set)
Bases:
objectLocation of a FileSet consumed or produced by a ShellStep.
- Parameters:
directory (
str) – The (relative) directory where the FileSet is found.file_set (
FileSet) – The FileSet object.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.pipelines as pipelines # file_set: pipelines.FileSet file_set_location = pipelines.FileSetLocation( directory="directory", file_set=file_set )
Attributes
- directory
The (relative) directory where the FileSet is found.
- file_set
The FileSet object.