interface CodeBuildBuildPhaseChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.ProjectEvents.CodeBuildBuildPhaseChange.CodeBuildBuildPhaseChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#ProjectEvents_CodeBuildBuildPhaseChange_CodeBuildBuildPhaseChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.CodeBuildBuildPhaseChangeProps |
Python | aws_cdk.mixins_preview.aws_codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.CodeBuildBuildPhaseChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป ProjectEvents ยป CodeBuildBuildPhaseChange ยป CodeBuildBuildPhaseChangeProps |
Props type for Project aws.codebuild@CodeBuildBuildPhaseChange event.
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 codeBuildBuildPhaseChangeProps: codebuild_events.ProjectEvents.CodeBuildBuildPhaseChange.CodeBuildBuildPhaseChangeProps = {
additionalInformation: {
artifact: {
location: ['location'],
md5Sum: ['md5Sum'],
sha256Sum: ['sha256Sum'],
},
buildComplete: ['buildComplete'],
buildStartTime: ['buildStartTime'],
cache: {
location: ['location'],
type: ['type'],
},
environment: {
computeType: ['computeType'],
environmentVariables: [{
name: ['name'],
type: ['type'],
value: ['value'],
}],
image: ['image'],
imagePullCredentialsType: ['imagePullCredentialsType'],
privilegedMode: ['privilegedMode'],
type: ['type'],
},
initiator: ['initiator'],
logs: {
deepLink: ['deepLink'],
groupName: ['groupName'],
streamName: ['streamName'],
},
networkInterface: {
eniId: ['eniId'],
subnetId: ['subnetId'],
},
phases: [{
durationInSeconds: ['durationInSeconds'],
endTime: ['endTime'],
phaseContext: ['phaseContext'],
phaseStatus: ['phaseStatus'],
phaseType: ['phaseType'],
startTime: ['startTime'],
}],
queuedTimeoutInMinutes: ['queuedTimeoutInMinutes'],
source: {
auth: {
type: ['type'],
},
buildspec: ['buildspec'],
location: ['location'],
type: ['type'],
},
sourceVersion: ['sourceVersion'],
timeoutInMinutes: ['timeoutInMinutes'],
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnets: [{
buildFleetAz: ['buildFleetAz'],
customerAz: ['customerAz'],
subnetId: ['subnetId'],
}],
vpcId: ['vpcId'],
},
},
buildId: ['buildId'],
completedPhase: ['completedPhase'],
completedPhaseContext: ['completedPhaseContext'],
completedPhaseDurationSeconds: ['completedPhaseDurationSeconds'],
completedPhaseEnd: ['completedPhaseEnd'],
completedPhaseStart: ['completedPhaseStart'],
completedPhaseStatus: ['completedPhaseStatus'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
projectName: ['projectName'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | Additional | additional-information property. |
| build | string[] | build-id property. |
| completed | string[] | completed-phase property. |
| completed | string[] | completed-phase-context property. |
| completed | string[] | completed-phase-duration-seconds property. |
| completed | string[] | completed-phase-end property. |
| completed | string[] | completed-phase-start property. |
| completed | string[] | completed-phase-status property. |
| event | AWSEvent | EventBridge event metadata. |
| project | string[] | project-name property. |
| version? | string[] | version property. |
additionalInformation?
Type:
Additional
(optional, default: Do not filter on this field)
additional-information property.
Specify an array of string values to match this event if the actual value of additional-information is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
buildId?
Type:
string[]
(optional, default: Do not filter on this field)
build-id property.
Specify an array of string values to match this event if the actual value of build-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedPhase?
Type:
string[]
(optional, default: Do not filter on this field)
completed-phase property.
Specify an array of string values to match this event if the actual value of completed-phase is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedPhaseContext?
Type:
string[]
(optional, default: Do not filter on this field)
completed-phase-context property.
Specify an array of string values to match this event if the actual value of completed-phase-context is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedPhaseDurationSeconds?
Type:
string[]
(optional, default: Do not filter on this field)
completed-phase-duration-seconds property.
Specify an array of string values to match this event if the actual value of completed-phase-duration-seconds is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedPhaseEnd?
Type:
string[]
(optional, default: Do not filter on this field)
completed-phase-end property.
Specify an array of string values to match this event if the actual value of completed-phase-end is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedPhaseStart?
Type:
string[]
(optional, default: Do not filter on this field)
completed-phase-start property.
Specify an array of string values to match this event if the actual value of completed-phase-start is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedPhaseStatus?
Type:
string[]
(optional, default: Do not filter on this field)
completed-phase-status property.
Specify an array of string values to match this event if the actual value of completed-phase-status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
projectName?
Type:
string[]
(optional, default: Filter with the Project reference)
project-name property.
Specify an array of string values to match this event if the actual value of project-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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