Interface CodeStarSourceVariables

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CodeStarSourceVariables.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.520Z") @Stability(Stable) public interface CodeStarSourceVariables extends software.amazon.jsii.JsiiSerializable
The CodePipeline variables emitted by CodeStar source Action.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codepipeline.actions.*;
 CodeStarSourceVariables codeStarSourceVariables = CodeStarSourceVariables.builder()
         .authorDate("authorDate")
         .branchName("branchName")
         .commitId("commitId")
         .commitMessage("commitMessage")
         .connectionArn("connectionArn")
         .fullRepositoryName("fullRepositoryName")
         .build();
 
  • Method Details

    • getAuthorDate

      @Stability(Stable) @NotNull String getAuthorDate()
      The date the currently last commit on the tracked branch was authored, in ISO-8601 format.
    • getBranchName

      @Stability(Stable) @NotNull String getBranchName()
      The name of the branch this action tracks.
    • getCommitId

      @Stability(Stable) @NotNull String getCommitId()
      The SHA1 hash of the currently last commit on the tracked branch.
    • getCommitMessage

      @Stability(Stable) @NotNull String getCommitMessage()
      The message of the currently last commit on the tracked branch.
    • getConnectionArn

      @Stability(Stable) @NotNull String getConnectionArn()
      The connection ARN this source uses.
    • getFullRepositoryName

      @Stability(Stable) @NotNull String getFullRepositoryName()
      The name of the repository this action points to.
    • builder

      @Stability(Stable) static CodeStarSourceVariables.Builder builder()
      Returns:
      a CodeStarSourceVariables.Builder of CodeStarSourceVariables