Class GitHubSourceAction

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.codepipeline.Action
software.amazon.awscdk.services.codepipeline.actions.Action
software.amazon.awscdk.services.codepipeline.actions.GitHubSourceAction
All Implemented Interfaces:
IAction, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:21.266Z") @Stability(Stable) public class GitHubSourceAction extends Action
Source that is provided by a GitHub repository.

Example:

 // Read the secret from Secrets Manager
 Pipeline pipeline = new Pipeline(this, "MyPipeline");
 Artifact sourceOutput = new Artifact();
 GitHubSourceAction sourceAction = GitHubSourceAction.Builder.create()
         .actionName("GitHub_Source")
         .owner("awslabs")
         .repo("aws-cdk")
         .oauthToken(SecretValue.secretsManager("my-github-token"))
         .output(sourceOutput)
         .branch("develop")
         .build();
 pipeline.addStage(StageOptions.builder()
         .stageName("Source")
         .actions(List.of(sourceAction))
         .build());
 
  • Constructor Details

    • GitHubSourceAction

      protected GitHubSourceAction(software.amazon.jsii.JsiiObjectRef objRef)
    • GitHubSourceAction

      protected GitHubSourceAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • GitHubSourceAction

      @Stability(Stable) public GitHubSourceAction(@NotNull GitHubSourceActionProps props)
      Parameters:
      props - This parameter is required.
  • Method Details

    • bound

      @Stability(Stable) @NotNull protected ActionConfig bound(@NotNull software.constructs.Construct scope, @NotNull IStage stage, @NotNull ActionBindOptions _options)
      This is a renamed version of the IAction.bind method.

      Specified by:
      bound in class Action
      Parameters:
      scope - This parameter is required.
      stage - This parameter is required.
      _options - This parameter is required.
    • getVariables

      @Stability(Stable) @NotNull public GitHubSourceVariables getVariables()
      The variables emitted by this action.