interface Environment
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.AWSAPICallViaCloudTrail.Environment |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#AWSAPICallViaCloudTrail_Environment |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.AWSAPICallViaCloudTrail.Environment |
Python | aws_cdk.mixins_preview.aws_codebuild.events.AWSAPICallViaCloudTrail.Environment |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป AWSAPICallViaCloudTrail ยป Environment |
Type definition for Environment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codebuild_events } from '@aws-cdk/mixins-preview/aws-codebuild';
const environment: codebuild_events.AWSAPICallViaCloudTrail.Environment = {
certificate: ['certificate'],
computeType: ['computeType'],
environmentVariables: [{
name: ['name'],
type: ['type'],
value: ['value'],
}],
image: ['image'],
imagePullCredentialsType: ['imagePullCredentialsType'],
privilegedMode: ['privilegedMode'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate? | string[] | certificate property. |
| compute | string[] | computeType property. |
| environment | Environment[] | environmentVariables property. |
| image? | string[] | image property. |
| image | string[] | imagePullCredentialsType property. |
| privileged | string[] | privilegedMode property. |
| type? | string[] | type property. |
certificate?
Type:
string[]
(optional, default: Do not filter on this field)
certificate property.
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.
computeType?
Type:
string[]
(optional, default: Do not filter on this field)
computeType property.
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.
environmentVariables?
Type:
Environment[]
(optional, default: Do not filter on this field)
environmentVariables property.
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.
image?
Type:
string[]
(optional, default: Do not filter on this field)
image property.
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.
imagePullCredentialsType?
Type:
string[]
(optional, default: Do not filter on this field)
imagePullCredentialsType property.
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.
privilegedMode?
Type:
string[]
(optional, default: Do not filter on this field)
privilegedMode property.
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.
type?
Type:
string[]
(optional, default: Do not filter on this field)
type property.
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.

.NET
Go
Java
Python
TypeScript