PipelineBaseProps
- class aws_cdk.pipelines.PipelineBaseProps(*, synth)
Bases:
object
Properties 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.out
directory generated by thecdk synth
command. If you use aShellStep
here 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.out
directory generated by thecdk synth
command.If you use a
ShellStep
here and you don’t configure an output directory, the output directory will automatically be assumed to becdk.out
.