PipelineBaseProps
- class aws_cdk.pipelines.PipelineBaseProps(*, synth)
Bases:
objectProperties for a
Pipeline.- Parameters:
synth (
IFileSetProducer) – The build step that produces the CDK Cloud Assembly. The primary output of this step needs to be thecdk.outdirectory generated by thecdk synthcommand. If you use aShellStephere and you don’t configure an output directory, the output directory will automatically be assumed to becdk.out.- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import pipelines # file_set_producer: pipelines.IFileSetProducer pipeline_base_props = pipelines.PipelineBaseProps( synth=file_set_producer )
Attributes
- synth
The build step that produces the CDK Cloud Assembly.
The primary output of this step needs to be the
cdk.outdirectory generated by thecdk synthcommand.If you use a
ShellStephere and you don’t configure an output directory, the output directory will automatically be assumed to becdk.out.