Interface CfnProjectPropsMixin.IProjectSourceVersionProperty
A source identifier and its corresponding version.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeBuild
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnProjectPropsMixin.IProjectSourceVersionProperty
Syntax (vb)
Public Interface CfnProjectPropsMixin.IProjectSourceVersionProperty
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.CfnPropertyMixins.AWS.CodeBuild;
var projectSourceVersionProperty = new ProjectSourceVersionProperty {
SourceIdentifier = "sourceIdentifier",
SourceVersion = "sourceVersion"
};
Synopsis
Properties
| SourceIdentifier | An identifier for a source in the build project. |
| SourceVersion | The source version for the corresponding source identifier. If specified, must be one of:. |
Properties
SourceIdentifier
An identifier for a source in the build project.
string? SourceIdentifier { get; }
Property Value
Remarks
The identifier can only contain alphanumeric characters and underscores, and must be less than 128 characters in length.
SourceVersion
The source version for the corresponding source identifier. If specified, must be one of:.
string? SourceVersion { get; }
Property Value
Remarks
For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .