aws-cdk-lib.aws_codepipeline_actions.CodeCommitSourceVariables

interface CodeCommitSourceVariables

LanguageType name
.NETAmazon.CDK.AWS.CodePipeline.Actions.CodeCommitSourceVariables
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#CodeCommitSourceVariables
Javasoftware.amazon.awscdk.services.codepipeline.actions.CodeCommitSourceVariables
Pythonaws_cdk.aws_codepipeline_actions.CodeCommitSourceVariables
TypeScript (source)aws-cdk-lib » aws_codepipeline_actions » CodeCommitSourceVariables

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 { aws_codepipeline_actions as codepipeline_actions } from 'aws-cdk-lib';
const codeCommitSourceVariables: codepipeline_actions.CodeCommitSourceVariables = {
  authorDate: 'authorDate',
  branchName: 'branchName',
  commitId: 'commitId',
  commitMessage: 'commitMessage',
  committerDate: 'committerDate',
  repositoryName: 'repositoryName',
};

Properties

NameTypeDescription
authorDatestringThe date the currently last commit on the tracked branch was authored, in ISO-8601 format.
branchNamestringThe name of the branch this action tracks.
commitIdstringThe SHA1 hash of the currently last commit on the tracked branch.
commitMessagestringThe message of the currently last commit on the tracked branch.
committerDatestringThe date the currently last commit on the tracked branch was committed, in ISO-8601 format.
repositoryNamestringThe name of the repository this action points to.

authorDate

Type: string

The date the currently last commit on the tracked branch was authored, in ISO-8601 format.


branchName

Type: string

The name of the branch this action tracks.


commitId

Type: string

The SHA1 hash of the currently last commit on the tracked branch.


commitMessage

Type: string

The message of the currently last commit on the tracked branch.


committerDate

Type: string

The date the currently last commit on the tracked branch was committed, in ISO-8601 format.


repositoryName

Type: string

The name of the repository this action points to.