interface PipelineBaseProps
Language | Type name |
---|---|
![]() | Amazon.CDK.Pipelines.PipelineBaseProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/pipelines#PipelineBaseProps |
![]() | software.amazon.awscdk.pipelines.PipelineBaseProps |
![]() | aws_cdk.pipelines.PipelineBaseProps |
![]() | aws-cdk-lib » pipelines » PipelineBaseProps |
Properties for a Pipeline
.
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 fileSetProducer: pipelines.IFileSetProducer;
const pipelineBaseProps: pipelines.PipelineBaseProps = {
synth: fileSetProducer,
};
Properties
Name | Type | Description |
---|---|---|
synth | IFile | The build step that produces the CDK Cloud Assembly. |
synth
Type:
IFile
The build step that produces the CDK Cloud Assembly.
The primary output of this step needs to be the cdk.out
directory
generated by the cdk synth
command.
If you use a ShellStep
here and you don't configure an output directory,
the output directory will automatically be assumed to be cdk.out
.