class CodeStarConnectionsSourceAction
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.CodeStarConnectionsSourceAction |
Java | software.amazon.awscdk.services.codepipeline.actions.CodeStarConnectionsSourceAction |
Python | aws_cdk.aws_codepipeline_actions.CodeStarConnectionsSourceAction |
TypeScript (source) | @aws-cdk/aws-codepipeline-actions » CodeStarConnectionsSourceAction |
Implements
IAction
Extends
Action
A CodePipeline source action for the CodeStar Connections source, which allows connecting to GitHub and BitBucket.
Example
const sourceOutput = new codepipeline.Artifact();
const sourceAction = new codepipeline_actions.CodeStarConnectionsSourceAction({
actionName: 'BitBucket_Source',
owner: 'aws',
repo: 'aws-cdk',
output: sourceOutput,
connectionArn: 'arn:aws:codestar-connections:us-east-1:123456789012:connection/12345678-abcd-12ab-34cdef5678gh',
});
Initializer
new CodeStarConnectionsSourceAction(props: CodeStarConnectionsSourceActionProps)
Parameters
Properties
| Name | Type | Description |
|---|---|---|
| action | Action | The simple properties of the Action, like its Owner, name, etc. |
| variables | Code | The variables emitted by this action. |
actionProperties
Type:
Action
The simple properties of the Action, like its Owner, name, etc.
Note that this accessor will be called before the {@link bind} callback.
variables
Type:
Code
The variables emitted by this action.
Methods
| Name | Description |
|---|---|
| bind(scope, stage, options) | The callback invoked when this Action is added to a Pipeline. |
| on | Creates an Event that will be triggered whenever the state of this Action changes. |
| protected bound(_scope, _stage, options) | This is a renamed version of the {@link IAction.bind} method. |
bind(scope, stage, options)
public bind(scope: Construct, stage: IStage, options: ActionBindOptions): ActionConfig
Parameters
- scope
Construct - stage
IStage - options
ActionBind Options
Returns
The callback invoked when this Action is added to a Pipeline.
onStateChange(name, target?, options?)
public onStateChange(name: string, target?: IRuleTarget, options?: RuleProps): Rule
Parameters
- name
string - target
IRuleTarget - options
RuleProps
Returns
Creates an Event that will be triggered whenever the state of this Action changes.
protected bound(_scope, _stage, options)
protected bound(_scope: Construct, _stage: IStage, options: ActionBindOptions): ActionConfig
Parameters
- _scope
Construct - _stage
IStage - options
ActionBind Options
Returns
This is a renamed version of the {@link IAction.bind} method.

.NET
Java
Python
TypeScript (