Class ArtifactsProps

Properties common to all Artifacts classes.

Inheritance

ArtifactsProps

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

Synopsis

Constructors

Properties

Constructors

ArtifactsProps()

Properties common to all Artifacts 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 artifactsProps = new ArtifactsProps {
                Identifier = "identifier"
            };

Properties

Identifier

The artifact identifier.

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

string

Implements