Show / Hide Table of Contents

Class ProjectEvents.CodeBuildBuildPhaseChange.NetworkInterface

(experimental) Type definition for Network-interface.

Inheritance
object
ProjectEvents.CodeBuildBuildPhaseChange.NetworkInterface
Implements
ProjectEvents.CodeBuildBuildPhaseChange.INetworkInterface
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.NetworkInterface : ProjectEvents.CodeBuildBuildPhaseChange.INetworkInterface
Syntax (vb)
Public Class ProjectEvents.CodeBuildBuildPhaseChange.NetworkInterface Implements ProjectEvents.CodeBuildBuildPhaseChange.INetworkInterface
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 networkInterface = new NetworkInterface {
                 EniId = new [] { "eniId" },
                 SubnetId = new [] { "subnetId" }
             };

Synopsis

Constructors

NetworkInterface()

(experimental) Type definition for Network-interface.

Properties

EniId

(experimental) eni-id property.

SubnetId

(experimental) subnet-id property.

Constructors

NetworkInterface()

(experimental) Type definition for Network-interface.

public NetworkInterface()
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 networkInterface = new NetworkInterface {
                 EniId = new [] { "eniId" },
                 SubnetId = new [] { "subnetId" }
             };

Properties

EniId

(experimental) eni-id property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of eni-id 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

SubnetId

(experimental) subnet-id property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of subnet-id 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.INetworkInterface
Back to top Generated by DocFX