Show / Hide Table of Contents

Interface AWSAPICallViaCloudTrail.IEnvironment

(experimental) Type definition for Environment.

Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface AWSAPICallViaCloudTrail.IEnvironment
Syntax (vb)
Public Interface AWSAPICallViaCloudTrail.IEnvironment
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 environment = new Environment {
                 Certificate = new [] { "certificate" },
                 ComputeType = new [] { "computeType" },
                 EnvironmentVariables = new [] { new EnvironmentItem {
                     Name = new [] { "name" },
                     Type = new [] { "type" },
                     Value = new [] { "value" }
                 } },
                 Image = new [] { "image" },
                 ImagePullCredentialsType = new [] { "imagePullCredentialsType" },
                 PrivilegedMode = new [] { "privilegedMode" },
                 Type = new [] { "type" }
             };

Synopsis

Properties

Certificate

(experimental) certificate property.

ComputeType

(experimental) computeType property.

EnvironmentVariables

(experimental) environmentVariables property.

Image

(experimental) image property.

ImagePullCredentialsType

(experimental) imagePullCredentialsType property.

PrivilegedMode

(experimental) privilegedMode property.

Type

(experimental) type property.

Properties

Certificate

(experimental) certificate property.

string[]? Certificate { get; }
Property Value

string[]

Remarks

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

ComputeType

(experimental) computeType property.

string[]? ComputeType { get; }
Property Value

string[]

Remarks

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

EnvironmentVariables

(experimental) environmentVariables property.

AWSAPICallViaCloudTrail.IEnvironmentItem[]? EnvironmentVariables { get; }
Property Value

IEnvironmentItem[]

Remarks

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

Image

(experimental) image property.

string[]? Image { get; }
Property Value

string[]

Remarks

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

ImagePullCredentialsType

(experimental) imagePullCredentialsType property.

string[]? ImagePullCredentialsType { get; }
Property Value

string[]

Remarks

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

PrivilegedMode

(experimental) privilegedMode property.

string[]? PrivilegedMode { get; }
Property Value

string[]

Remarks

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

Type

(experimental) type property.

string[]? Type { get; }
Property Value

string[]

Remarks

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

Back to top Generated by DocFX