Show / Hide Table of Contents

Class ProjectEvents.CodeBuildBuildPhaseChange.Artifact

(experimental) Type definition for Artifact.

Inheritance
object
ProjectEvents.CodeBuildBuildPhaseChange.Artifact
Implements
ProjectEvents.CodeBuildBuildPhaseChange.IArtifact
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class ProjectEvents.CodeBuildBuildPhaseChange.Artifact : ProjectEvents.CodeBuildBuildPhaseChange.IArtifact
Syntax (vb)
Public Class ProjectEvents.CodeBuildBuildPhaseChange.Artifact Implements ProjectEvents.CodeBuildBuildPhaseChange.IArtifact
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.CodeBuild.Events;

             var artifact = new Artifact {
                 Location = new [] { "location" },
                 Md5Sum = new [] { "md5Sum" },
                 Sha256Sum = new [] { "sha256Sum" }
             };

Synopsis

Constructors

Artifact()

(experimental) Type definition for Artifact.

Properties

Location

(experimental) location property.

Md5Sum

(experimental) md5sum property.

Sha256Sum

(experimental) sha256sum property.

Constructors

Artifact()

(experimental) Type definition for Artifact.

public Artifact()
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.CodeBuild.Events;

             var artifact = new Artifact {
                 Location = new [] { "location" },
                 Md5Sum = new [] { "md5Sum" },
                 Sha256Sum = new [] { "sha256Sum" }
             };

Properties

Location

(experimental) location property.

public string[]? Location { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of location is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Md5Sum

(experimental) md5sum property.

public string[]? Md5Sum { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of md5sum is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Sha256Sum

(experimental) sha256sum property.

public string[]? Sha256Sum { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of sha256sum is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

ProjectEvents.CodeBuildBuildPhaseChange.IArtifact
Back to top Generated by DocFX