Show / Hide Table of Contents

Interface CfnDeploymentGroup.IGitHubLocationProperty

GitHubLocation is a property of the CodeDeploy DeploymentGroup Revision property that specifies the location of an application revision that is stored in GitHub.

Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDeploymentGroup.IGitHubLocationProperty
Syntax (vb)
Public Interface CfnDeploymentGroup.IGitHubLocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-githublocation.html

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.CodeDeploy;

             var gitHubLocationProperty = new GitHubLocationProperty {
                 CommitId = "commitId",
                 Repository = "repository"
             };

Synopsis

Properties

CommitId

The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

Repository

The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.

Properties

CommitId

The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

string CommitId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-githublocation.html#cfn-codedeploy-deploymentgroup-githublocation-commitid

Repository

The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.

string Repository { get; }
Property Value

string

Remarks

Specify the value as account/repository .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-githublocation.html#cfn-codedeploy-deploymentgroup-githublocation-repository

Back to top Generated by DocFX