Class CfnDeploymentGroup.RevisionLocationProperty
RevisionLocation is a property that defines the location of the CodeDeploy application revision to deploy.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.RevisionLocationProperty : CfnDeploymentGroup.IRevisionLocationProperty
Syntax (vb)
Public Class CfnDeploymentGroup.RevisionLocationProperty Implements CfnDeploymentGroup.IRevisionLocationProperty
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.CodeDeploy;
var revisionLocationProperty = new RevisionLocationProperty {
GitHubLocation = new GitHubLocationProperty {
CommitId = "commitId",
Repository = "repository"
},
RevisionType = "revisionType",
S3Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key",
// the properties below are optional
BundleType = "bundleType",
ETag = "eTag",
Version = "version"
}
};
Synopsis
Constructors
| RevisionLocationProperty() |
|
Properties
| GitHubLocation | Information about the location of application artifacts stored in GitHub. |
| RevisionType | The type of application revision:. |
| S3Location | Information about the location of a revision stored in Amazon S3. |
Constructors
RevisionLocationProperty()
RevisionLocation is a property that defines the location of the CodeDeploy application revision to deploy.
public RevisionLocationProperty()
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.CodeDeploy;
var revisionLocationProperty = new RevisionLocationProperty {
GitHubLocation = new GitHubLocationProperty {
CommitId = "commitId",
Repository = "repository"
},
RevisionType = "revisionType",
S3Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key",
// the properties below are optional
BundleType = "bundleType",
ETag = "eTag",
Version = "version"
}
};
Properties
GitHubLocation
Information about the location of application artifacts stored in GitHub.
public object? GitHubLocation { get; set; }
Property Value
Remarks
RevisionType
The type of application revision:.
public string? RevisionType { get; set; }
Property Value
Remarks
S3Location
Information about the location of a revision stored in Amazon S3.
public object? S3Location { get; set; }