Interface CodeCommitSourceVariables

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.409Z") @Stability(Stable) public interface CodeCommitSourceVariables extends software.amazon.jsii.JsiiSerializable
The CodePipeline variables emitted by the CodeCommit 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.*;
 CodeCommitSourceVariables codeCommitSourceVariables = CodeCommitSourceVariables.builder()
         .authorDate("authorDate")
         .branchName("branchName")
         .commitId("commitId")
         .commitMessage("commitMessage")
         .committerDate("committerDate")
         .repositoryName("repositoryName")
         .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.
    • getCommitterDate

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

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

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