Show / Hide Table of Contents

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

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

string

Remarks

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

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

string? SourceVersion { get; }
Property Value

string

Remarks

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

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

    Back to top Generated by DocFX