package awscodepipeline import ( _init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2" "github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline/internal" "github.com/aws/aws-cdk-go/awscdk/v2/awscodestarnotifications" "github.com/aws/aws-cdk-go/awscdk/v2/awsevents" "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" "github.com/aws/aws-cdk-go/awscdk/v2/awss3" "github.com/aws/constructs-go/constructs/v10" ) // An AWS CodePipeline pipeline with its associated IAM role and S3 bucket. // // Example: // // create a pipeline // import codecommit "github.com/aws/aws-cdk-go/awscdk" // // // add a source action to the stage // var repo repository // var sourceArtifact artifact // // // pipeline := codepipeline.NewPipeline(this, jsii.String("Pipeline")) // // // add a stage // sourceStage := pipeline.AddStage(&StageOptions{ // StageName: jsii.String("Source"), // }) // sourceStage.AddAction(codepipeline_actions.NewCodeCommitSourceAction(&CodeCommitSourceActionProps{ // ActionName: jsii.String("Source"), // Output: sourceArtifact, // Repository: repo, // })) // type Pipeline interface { awscdk.Resource IPipeline // Bucket used to store output artifacts. ArtifactBucket() awss3.IBucket // Returns all of the `CrossRegionSupportStack`s that were generated automatically when dealing with Actions that reside in a different region than the Pipeline itself. CrossRegionSupport() *map[string]*CrossRegionSupport // The environment this resource belongs to. // // For resources that are created and managed by the CDK // (generally, those created by creating new class instances like Role, Bucket, etc.), // this is always the same as the environment of the stack they belong to; // however, for imported resources // (those obtained from static methods like fromRoleArn, fromBucketName, etc.), // that might be different than the stack they were imported into. Env() *awscdk.ResourceEnvironment // The tree node. Node() constructs.Node // Returns a string-encoded token that resolves to the physical name that should be passed to the CloudFormation resource. // // This value will resolve to one of the following: // - a concrete value (e.g. `"my-awesome-bucket"`) // - `undefined`, when a name should be generated by CloudFormation // - a concrete name generated automatically during synthesis, in // cross-environment scenarios. PhysicalName() *string // ARN of this pipeline. PipelineArn() *string // The name of the pipeline. PipelineName() *string // The version of the pipeline. PipelineVersion() *string // The IAM role AWS CodePipeline will use to perform actions or assume roles for actions with a more specific IAM role. Role() awsiam.IRole // The stack in which this resource is defined. Stack() awscdk.Stack // Get the number of Stages in this Pipeline. StageCount() *float64 // Returns the stages that comprise the pipeline. // // **Note**: the returned array is a defensive copy, // so adding elements to it has no effect. // Instead, use the `addStage` method if you want to add more stages // to the pipeline. Stages() *[]IStage // Creates a new Stage, and adds it to this Pipeline. // // Returns: the newly created Stage. AddStage(props *StageOptions) IStage // Adds a statement to the pipeline role. AddToRolePolicy(statement awsiam.PolicyStatement) // Apply the given removal policy to this resource. // // The Removal Policy controls what happens to this resource when it stops // being managed by CloudFormation, either because you've removed it from the // CDK application or because you've made a change that requires the resource // to be replaced. // // The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS // account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). ApplyRemovalPolicy(policy awscdk.RemovalPolicy) // Returns a source configuration for notification rule. BindAsNotificationRuleSource(_scope constructs.Construct) *awscodestarnotifications.NotificationRuleSourceConfig GeneratePhysicalName() *string // Returns an environment-sensitive token that should be used for the resource's "ARN" attribute (e.g. `bucket.bucketArn`). // // Normally, this token will resolve to `arnAttr`, but if the resource is // referenced across environments, `arnComponents` will be used to synthesize // a concrete ARN with the resource's physical name. Make sure to reference // `this.physicalName` in `arnComponents`. GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string // Returns an environment-sensitive token that should be used for the resource's "name" attribute (e.g. `bucket.bucketName`). // // Normally, this token will resolve to `nameAttr`, but if the resource is // referenced across environments, it will be resolved to `this.physicalName`, // which will be a concrete name. GetResourceNameAttribute(nameAttr *string) *string // Defines a CodeStar notification rule triggered when the pipeline events emitted by you specified, it very similar to `onEvent` API. // // You can also use the methods `notifyOnExecutionStateChange`, `notifyOnAnyStageStateChange`, // `notifyOnAnyActionStateChange` and `notifyOnAnyManualApprovalStateChange` // to define rules for these specific event emitted. NotifyOn(id *string, target awscodestarnotifications.INotificationRuleTarget, options *PipelineNotifyOnOptions) awscodestarnotifications.INotificationRule // Define an notification rule triggered by the set of the "Action execution" events emitted from this pipeline. NotifyOnAnyActionStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule // Define an notification rule triggered by the set of the "Manual approval" events emitted from this pipeline. NotifyOnAnyManualApprovalStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule // Define an notification rule triggered by the set of the "Stage execution" events emitted from this pipeline. NotifyOnAnyStageStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule // Define an notification rule triggered by the set of the "Pipeline execution" events emitted from this pipeline. NotifyOnExecutionStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule // Defines an event rule triggered by this CodePipeline. OnEvent(id *string, options *awsevents.OnEventOptions) awsevents.Rule // Defines an event rule triggered by the "CodePipeline Pipeline Execution State Change" event emitted from this pipeline. OnStateChange(id *string, options *awsevents.OnEventOptions) awsevents.Rule // Access one of the pipeline's stages by stage name. Stage(stageName *string) IStage // Returns a string representation of this construct. ToString() *string } // The jsii proxy struct for Pipeline type jsiiProxy_Pipeline struct { internal.Type__awscdkResource jsiiProxy_IPipeline } func (j *jsiiProxy_Pipeline) ArtifactBucket() awss3.IBucket { var returns awss3.IBucket _jsii_.Get( j, "artifactBucket", &returns, ) return returns } func (j *jsiiProxy_Pipeline) CrossRegionSupport() *map[string]*CrossRegionSupport { var returns *map[string]*CrossRegionSupport _jsii_.Get( j, "crossRegionSupport", &returns, ) return returns } func (j *jsiiProxy_Pipeline) Env() *awscdk.ResourceEnvironment { var returns *awscdk.ResourceEnvironment _jsii_.Get( j, "env", &returns, ) return returns } func (j *jsiiProxy_Pipeline) Node() constructs.Node { var returns constructs.Node _jsii_.Get( j, "node", &returns, ) return returns } func (j *jsiiProxy_Pipeline) PhysicalName() *string { var returns *string _jsii_.Get( j, "physicalName", &returns, ) return returns } func (j *jsiiProxy_Pipeline) PipelineArn() *string { var returns *string _jsii_.Get( j, "pipelineArn", &returns, ) return returns } func (j *jsiiProxy_Pipeline) PipelineName() *string { var returns *string _jsii_.Get( j, "pipelineName", &returns, ) return returns } func (j *jsiiProxy_Pipeline) PipelineVersion() *string { var returns *string _jsii_.Get( j, "pipelineVersion", &returns, ) return returns } func (j *jsiiProxy_Pipeline) Role() awsiam.IRole { var returns awsiam.IRole _jsii_.Get( j, "role", &returns, ) return returns } func (j *jsiiProxy_Pipeline) Stack() awscdk.Stack { var returns awscdk.Stack _jsii_.Get( j, "stack", &returns, ) return returns } func (j *jsiiProxy_Pipeline) StageCount() *float64 { var returns *float64 _jsii_.Get( j, "stageCount", &returns, ) return returns } func (j *jsiiProxy_Pipeline) Stages() *[]IStage { var returns *[]IStage _jsii_.Get( j, "stages", &returns, ) return returns } func NewPipeline(scope constructs.Construct, id *string, props *PipelineProps) Pipeline { _init_.Initialize() if err := validateNewPipelineParameters(scope, id, props); err != nil { panic(err) } j := jsiiProxy_Pipeline{} _jsii_.Create( "aws-cdk-lib.aws_codepipeline.Pipeline", []interface{}{scope, id, props}, &j, ) return &j } func NewPipeline_Override(p Pipeline, scope constructs.Construct, id *string, props *PipelineProps) { _init_.Initialize() _jsii_.Create( "aws-cdk-lib.aws_codepipeline.Pipeline", []interface{}{scope, id, props}, p, ) } // Import a pipeline into this app. func Pipeline_FromPipelineArn(scope constructs.Construct, id *string, pipelineArn *string) IPipeline { _init_.Initialize() if err := validatePipeline_FromPipelineArnParameters(scope, id, pipelineArn); err != nil { panic(err) } var returns IPipeline _jsii_.StaticInvoke( "aws-cdk-lib.aws_codepipeline.Pipeline", "fromPipelineArn", []interface{}{scope, id, pipelineArn}, &returns, ) return returns } // Checks if `x` is a construct. // // Use this method instead of `instanceof` to properly detect `Construct` // instances, even when the construct library is symlinked. // // Explanation: in JavaScript, multiple copies of the `constructs` library on // disk are seen as independent, completely different libraries. As a // consequence, the class `Construct` in each copy of the `constructs` library // is seen as a different class, and an instance of one class will not test as // `instanceof` the other class. `npm install` will not create installations // like this, but users may manually symlink construct libraries together or // use a monorepo tool: in those cases, multiple copies of the `constructs` // library can be accidentally installed, and `instanceof` will behave // unpredictably. It is safest to avoid using `instanceof`, and using // this type-testing method instead. // // Returns: true if `x` is an object created from a class which extends `Construct`. func Pipeline_IsConstruct(x interface{}) *bool { _init_.Initialize() if err := validatePipeline_IsConstructParameters(x); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_codepipeline.Pipeline", "isConstruct", []interface{}{x}, &returns, ) return returns } // Returns true if the construct was created by CDK, and false otherwise. func Pipeline_IsOwnedResource(construct constructs.IConstruct) *bool { _init_.Initialize() if err := validatePipeline_IsOwnedResourceParameters(construct); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_codepipeline.Pipeline", "isOwnedResource", []interface{}{construct}, &returns, ) return returns } // Check whether the given construct is a Resource. func Pipeline_IsResource(construct constructs.IConstruct) *bool { _init_.Initialize() if err := validatePipeline_IsResourceParameters(construct); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_codepipeline.Pipeline", "isResource", []interface{}{construct}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) AddStage(props *StageOptions) IStage { if err := p.validateAddStageParameters(props); err != nil { panic(err) } var returns IStage _jsii_.Invoke( p, "addStage", []interface{}{props}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) AddToRolePolicy(statement awsiam.PolicyStatement) { if err := p.validateAddToRolePolicyParameters(statement); err != nil { panic(err) } _jsii_.InvokeVoid( p, "addToRolePolicy", []interface{}{statement}, ) } func (p *jsiiProxy_Pipeline) ApplyRemovalPolicy(policy awscdk.RemovalPolicy) { if err := p.validateApplyRemovalPolicyParameters(policy); err != nil { panic(err) } _jsii_.InvokeVoid( p, "applyRemovalPolicy", []interface{}{policy}, ) } func (p *jsiiProxy_Pipeline) BindAsNotificationRuleSource(_scope constructs.Construct) *awscodestarnotifications.NotificationRuleSourceConfig { if err := p.validateBindAsNotificationRuleSourceParameters(_scope); err != nil { panic(err) } var returns *awscodestarnotifications.NotificationRuleSourceConfig _jsii_.Invoke( p, "bindAsNotificationRuleSource", []interface{}{_scope}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) GeneratePhysicalName() *string { var returns *string _jsii_.Invoke( p, "generatePhysicalName", nil, // no parameters &returns, ) return returns } func (p *jsiiProxy_Pipeline) GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string { if err := p.validateGetResourceArnAttributeParameters(arnAttr, arnComponents); err != nil { panic(err) } var returns *string _jsii_.Invoke( p, "getResourceArnAttribute", []interface{}{arnAttr, arnComponents}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) GetResourceNameAttribute(nameAttr *string) *string { if err := p.validateGetResourceNameAttributeParameters(nameAttr); err != nil { panic(err) } var returns *string _jsii_.Invoke( p, "getResourceNameAttribute", []interface{}{nameAttr}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) NotifyOn(id *string, target awscodestarnotifications.INotificationRuleTarget, options *PipelineNotifyOnOptions) awscodestarnotifications.INotificationRule { if err := p.validateNotifyOnParameters(id, target, options); err != nil { panic(err) } var returns awscodestarnotifications.INotificationRule _jsii_.Invoke( p, "notifyOn", []interface{}{id, target, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) NotifyOnAnyActionStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule { if err := p.validateNotifyOnAnyActionStateChangeParameters(id, target, options); err != nil { panic(err) } var returns awscodestarnotifications.INotificationRule _jsii_.Invoke( p, "notifyOnAnyActionStateChange", []interface{}{id, target, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) NotifyOnAnyManualApprovalStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule { if err := p.validateNotifyOnAnyManualApprovalStateChangeParameters(id, target, options); err != nil { panic(err) } var returns awscodestarnotifications.INotificationRule _jsii_.Invoke( p, "notifyOnAnyManualApprovalStateChange", []interface{}{id, target, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) NotifyOnAnyStageStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule { if err := p.validateNotifyOnAnyStageStateChangeParameters(id, target, options); err != nil { panic(err) } var returns awscodestarnotifications.INotificationRule _jsii_.Invoke( p, "notifyOnAnyStageStateChange", []interface{}{id, target, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) NotifyOnExecutionStateChange(id *string, target awscodestarnotifications.INotificationRuleTarget, options *awscodestarnotifications.NotificationRuleOptions) awscodestarnotifications.INotificationRule { if err := p.validateNotifyOnExecutionStateChangeParameters(id, target, options); err != nil { panic(err) } var returns awscodestarnotifications.INotificationRule _jsii_.Invoke( p, "notifyOnExecutionStateChange", []interface{}{id, target, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) OnEvent(id *string, options *awsevents.OnEventOptions) awsevents.Rule { if err := p.validateOnEventParameters(id, options); err != nil { panic(err) } var returns awsevents.Rule _jsii_.Invoke( p, "onEvent", []interface{}{id, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) OnStateChange(id *string, options *awsevents.OnEventOptions) awsevents.Rule { if err := p.validateOnStateChangeParameters(id, options); err != nil { panic(err) } var returns awsevents.Rule _jsii_.Invoke( p, "onStateChange", []interface{}{id, options}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) Stage(stageName *string) IStage { if err := p.validateStageParameters(stageName); err != nil { panic(err) } var returns IStage _jsii_.Invoke( p, "stage", []interface{}{stageName}, &returns, ) return returns } func (p *jsiiProxy_Pipeline) ToString() *string { var returns *string _jsii_.Invoke( p, "toString", nil, // no parameters &returns, ) return returns }