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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCodeCommitSourceVariables
static final class
An implementation forCodeCommitSourceVariables
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The date the currently last commit on the tracked branch was authored, in ISO-8601 format.The name of the branch this action tracks.The SHA1 hash of the currently last commit on the tracked branch.The message of the currently last commit on the tracked branch.The date the currently last commit on the tracked branch was committed, in ISO-8601 format.The name of the repository this action points to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorDate
The date the currently last commit on the tracked branch was authored, in ISO-8601 format. -
getBranchName
The name of the branch this action tracks. -
getCommitId
The SHA1 hash of the currently last commit on the tracked branch. -
getCommitMessage
The message of the currently last commit on the tracked branch. -
getCommitterDate
The date the currently last commit on the tracked branch was committed, in ISO-8601 format. -
getRepositoryName
The name of the repository this action points to. -
builder
- Returns:
- a
CodeCommitSourceVariables.Builder
ofCodeCommitSourceVariables
-