interface GitHubLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins.CfnDeploymentGroupPropsMixin.GitHubLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodedeploy/mixins#CfnDeploymentGroupPropsMixin_GitHubLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.codedeploy.mixins.CfnDeploymentGroupPropsMixin.GitHubLocationProperty |
Python | aws_cdk.mixins_preview.aws_codedeploy.mixins.CfnDeploymentGroupPropsMixin.GitHubLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codedeploy » mixins » CfnDeploymentGroupPropsMixin » GitHubLocationProperty |
GitHubLocation is a property of the CodeDeploy DeploymentGroup Revision property that specifies the location of an application revision that is stored in GitHub.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codedeploy_mixins } from '@aws-cdk/mixins-preview/aws-codedeploy';
const gitHubLocationProperty: codedeploy_mixins.CfnDeploymentGroupPropsMixin.GitHubLocationProperty = {
commitId: 'commitId',
repository: 'repository',
};
Properties
| Name | Type | Description |
|---|---|---|
| commit | string | The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision. |
| repository? | string | The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision. |
commitId?
Type:
string
(optional)
The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.
repository?
Type:
string
(optional)
The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.
Specify the value as account/repository .

.NET
Go
Java
Python
TypeScript