aws-cdk-lib.aws_codepipeline_actions.CodeStarSourceVariables

interface CodeStarSourceVariables

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

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 { aws_codepipeline_actions as codepipeline_actions } from 'aws-cdk-lib';
const codeStarSourceVariables: codepipeline_actions.CodeStarSourceVariables = {
  authorDate: 'authorDate',
  branchName: 'branchName',
  commitId: 'commitId',
  commitMessage: 'commitMessage',
  connectionArn: 'connectionArn',
  fullRepositoryName: 'fullRepositoryName',
};

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.
connectionArnstringThe connection ARN this source uses.
fullRepositoryNamestringThe 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.


connectionArn

Type: string

The connection ARN this source uses.


fullRepositoryName

Type: string

The name of the repository this action points to.