interface Environment
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.ProjectEvents.CodeBuildBuildPhaseChange.Environment |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#ProjectEvents_CodeBuildBuildPhaseChange_Environment |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.Environment |
Python | aws_cdk.mixins_preview.aws_codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.Environment |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป ProjectEvents ยป CodeBuildBuildPhaseChange ยป 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.ProjectEvents.CodeBuildBuildPhaseChange.Environment = {
computeType: ['computeType'],
environmentVariables: [{
name: ['name'],
type: ['type'],
value: ['value'],
}],
image: ['image'],
imagePullCredentialsType: ['imagePullCredentialsType'],
privilegedMode: ['privilegedMode'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string[] | compute-type property. |
| environment | Environment[] | environment-variables property. |
| image? | string[] | image property. |
| image | string[] | image-pull-credentials-type property. |
| privileged | string[] | privileged-mode property. |
| type? | string[] | type property. |
computeType?
Type:
string[]
(optional, default: Do not filter on this field)
compute-type property.
Specify an array of string values to match this event if the actual value of compute-type 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)
environment-variables property.
Specify an array of string values to match this event if the actual value of environment-variables 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)
image-pull-credentials-type property.
Specify an array of string values to match this event if the actual value of image-pull-credentials-type 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)
privileged-mode property.
Specify an array of string values to match this event if the actual value of privileged-mode 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