Show / Hide Table of Contents

Class CfnProject.ProjectSourceVersionProperty

A source identifier and its corresponding version.

Inheritance
System.Object
CfnProject.ProjectSourceVersionProperty
Implements
CfnProject.IProjectSourceVersionProperty
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.AWS.CodeBuild.dll
Syntax (csharp)
public class ProjectSourceVersionProperty : Object, CfnProject.IProjectSourceVersionProperty
Syntax (vb)
Public Class ProjectSourceVersionProperty
    Inherits Object
    Implements CfnProject.IProjectSourceVersionProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectsourceversion.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.CodeBuild;

var projectSourceVersionProperty = new ProjectSourceVersionProperty {
    SourceIdentifier = "sourceIdentifier",

    // the properties below are optional
    SourceVersion = "sourceVersion"
};

Synopsis

Constructors

ProjectSourceVersionProperty()

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:.

Constructors

ProjectSourceVersionProperty()

public ProjectSourceVersionProperty()

Properties

SourceIdentifier

An identifier for a source in the build project.

public string SourceIdentifier { get; set; }
Property Value

System.String

Remarks

The identifier can only contain alphanumeric characters and underscores, and must be less than 128 characters in length.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectsourceversion.html#cfn-codebuild-project-projectsourceversion-sourceidentifier

SourceVersion

The source version for the corresponding source identifier. If specified, must be one of:.

public string SourceVersion { get; set; }
Property Value

System.String

Remarks

    For more information, see Source Version Sample with CodeBuild in the AWS CodeBuild User Guide .

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectsourceversion.html#cfn-codebuild-project-projectsourceversion-sourceversion

    Implements

    CfnProject.IProjectSourceVersionProperty
    Back to top Generated by DocFX