package awscodepipelineactions // The CodePipeline variables emitted by GitHub source Action. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // gitHubSourceVariables := &GitHubSourceVariables{ // AuthorDate: jsii.String("authorDate"), // BranchName: jsii.String("branchName"), // CommitId: jsii.String("commitId"), // CommitMessage: jsii.String("commitMessage"), // CommitterDate: jsii.String("committerDate"), // CommitUrl: jsii.String("commitUrl"), // RepositoryName: jsii.String("repositoryName"), // } // type GitHubSourceVariables struct { // The date the currently last commit on the tracked branch was authored, in ISO-8601 format. AuthorDate *string `field:"required" json:"authorDate" yaml:"authorDate"` // The name of the branch this action tracks. BranchName *string `field:"required" json:"branchName" yaml:"branchName"` // The SHA1 hash of the currently last commit on the tracked branch. CommitId *string `field:"required" json:"commitId" yaml:"commitId"` // The message of the currently last commit on the tracked branch. CommitMessage *string `field:"required" json:"commitMessage" yaml:"commitMessage"` // The date the currently last commit on the tracked branch was committed, in ISO-8601 format. CommitterDate *string `field:"required" json:"committerDate" yaml:"committerDate"` // The GitHub API URL of the currently last commit on the tracked branch. CommitUrl *string `field:"required" json:"commitUrl" yaml:"commitUrl"` // The name of the repository this action points to. RepositoryName *string `field:"required" json:"repositoryName" yaml:"repositoryName"` }