Class SourceProps

Properties common to all Source classes.

Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SourceProps : ISourceProps
Syntax (vb)
Public Class SourceProps Implements ISourceProps
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 sourceProps = new SourceProps {
                Identifier = "identifier"
            };

Synopsis

Constructors

Properties

Constructors

SourceProps()

Properties common to all Source classes.

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 sourceProps = new SourceProps {
                Identifier = "identifier"
            };

Properties

Identifier

The source identifier.

public string? Identifier { get; set; }
Property Value

string

Implements