Show / Hide Table of Contents

Class CodeStarSourceVariables

The CodePipeline variables emitted by CodeStar source Action.

Inheritance
System.Object
CodeStarSourceVariables
Implements
ICodeStarSourceVariables
Namespace: Amazon.CDK.AWS.CodePipeline.Actions
Assembly: Amazon.CDK.AWS.CodePipeline.Actions.dll
Syntax (csharp)
public class CodeStarSourceVariables : Object, ICodeStarSourceVariables
Syntax (vb)
Public Class CodeStarSourceVariables
    Inherits Object
    Implements ICodeStarSourceVariables
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline.Actions;

var codeStarSourceVariables = new CodeStarSourceVariables {
    AuthorDate = "authorDate",
    BranchName = "branchName",
    CommitId = "commitId",
    CommitMessage = "commitMessage",
    ConnectionArn = "connectionArn",
    FullRepositoryName = "fullRepositoryName"
};

Synopsis

Constructors

CodeStarSourceVariables()

Properties

AuthorDate

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

BranchName

The name of the branch this action tracks.

CommitId

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

CommitMessage

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

ConnectionArn

The connection ARN this source uses.

FullRepositoryName

The name of the repository this action points to.

Constructors

CodeStarSourceVariables()

public CodeStarSourceVariables()

Properties

AuthorDate

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

public string AuthorDate { get; set; }
Property Value

System.String

BranchName

The name of the branch this action tracks.

public string BranchName { get; set; }
Property Value

System.String

CommitId

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

public string CommitId { get; set; }
Property Value

System.String

CommitMessage

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

public string CommitMessage { get; set; }
Property Value

System.String

ConnectionArn

The connection ARN this source uses.

public string ConnectionArn { get; set; }
Property Value

System.String

FullRepositoryName

The name of the repository this action points to.

public string FullRepositoryName { get; set; }
Property Value

System.String

Implements

ICodeStarSourceVariables
Back to top Generated by DocFX