package pipelines // Configuration options for CodeStar source. // // Example: // pipeline := pipelines.NewCodePipeline(this, jsii.String("Pipeline"), &CodePipelineProps{ // Synth: pipelines.NewShellStep(jsii.String("Synth"), &ShellStepProps{ // Input: pipelines.CodePipelineSource_Connection(jsii.String("my-org/my-app"), jsii.String("main"), &ConnectionSourceOptions{ // ConnectionArn: jsii.String("arn:aws:codestar-connections:us-east-1:222222222222:connection/7d2469ff-514a-4e4f-9003-5ca4a43cdc41"), // }), // Commands: []*string{ // jsii.String("npm ci"), // jsii.String("npm run build"), // jsii.String("npx cdk synth"), // }, // }), // // // Turn this on because the pipeline uses Docker image assets // DockerEnabledForSelfMutation: jsii.Boolean(true), // }) // // pipeline.AddWave(jsii.String("MyWave"), &WaveOptions{ // Post: []step{ // pipelines.NewCodeBuildStep(jsii.String("RunApproval"), &CodeBuildStepProps{ // Commands: []*string{ // jsii.String("command-from-image"), // }, // BuildEnvironment: &BuildEnvironment{ // // The user of a Docker image asset in the pipeline requires turning on // // 'dockerEnabledForSelfMutation'. // BuildImage: codebuild.LinuxBuildImage_FromAsset(this, jsii.String("Image"), &DockerImageAssetProps{ // Directory: jsii.String("./docker-image"), // }), // }, // }), // }, // }) // type ConnectionSourceOptions struct { // The ARN of the CodeStar Connection created in the AWS console that has permissions to access this GitHub or BitBucket repository. // // Example: // "arn:aws:codestar-connections:us-east-1:123456789012:connection/12345678-abcd-12ab-34cdef5678gh" // // See: https://docs.aws.amazon.com/codepipeline/latest/userguide/connections-create.html // ConnectionArn *string `field:"required" json:"connectionArn" yaml:"connectionArn"` // The action name used for this source in the CodePipeline. ActionName *string `field:"optional" json:"actionName" yaml:"actionName"` // If this is set, the next CodeBuild job clones the repository (instead of CodePipeline downloading the files). // // This provides access to repository history, and retains symlinks (symlinks would otherwise be // removed by CodePipeline). // // **Note**: if this option is true, only CodeBuild jobs can use the output artifact. // See: https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodestarConnectionSource.html#action-reference-CodestarConnectionSource-config // CodeBuildCloneOutput *bool `field:"optional" json:"codeBuildCloneOutput" yaml:"codeBuildCloneOutput"` // Controls automatically starting your pipeline when a new commit is made on the configured repository and branch. // // If unspecified, // the default value is true, and the field does not display by default. // See: https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodestarConnectionSource.html // TriggerOnPush *bool `field:"optional" json:"triggerOnPush" yaml:"triggerOnPush"` }