interface BuildPhase
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.AWSAPICallViaCloudTrail.BuildPhase |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#AWSAPICallViaCloudTrail_BuildPhase |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.AWSAPICallViaCloudTrail.BuildPhase |
Python | aws_cdk.mixins_preview.aws_codebuild.events.AWSAPICallViaCloudTrail.BuildPhase |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป AWSAPICallViaCloudTrail ยป BuildPhase |
Type definition for BuildPhase.
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 buildPhase: codebuild_events.AWSAPICallViaCloudTrail.BuildPhase = {
durationInSeconds: ['durationInSeconds'],
endTime: ['endTime'],
phaseContext: ['phaseContext'],
phaseStatus: ['phaseStatus'],
phaseType: ['phaseType'],
startTime: ['startTime'],
};
Properties
| Name | Type | Description |
|---|---|---|
| duration | string[] | durationInSeconds property. |
| end | string[] | endTime property. |
| phase | string[] | phaseContext property. |
| phase | string[] | phaseStatus property. |
| phase | string[] | phaseType property. |
| start | string[] | startTime property. |
durationInSeconds?
Type:
string[]
(optional, default: Do not filter on this field)
durationInSeconds property.
Specify an array of string values to match this event if the actual value of durationInSeconds is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endTime?
Type:
string[]
(optional, default: Do not filter on this field)
endTime property.
Specify an array of string values to match this event if the actual value of endTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
phaseContext?
Type:
string[]
(optional, default: Do not filter on this field)
phaseContext property.
Specify an array of string values to match this event if the actual value of phaseContext is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
phaseStatus?
Type:
string[]
(optional, default: Do not filter on this field)
phaseStatus property.
Specify an array of string values to match this event if the actual value of phaseStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
phaseType?
Type:
string[]
(optional, default: Do not filter on this field)
phaseType property.
Specify an array of string values to match this event if the actual value of phaseType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startTime?
Type:
string[]
(optional, default: Do not filter on this field)
startTime property.
Specify an array of string values to match this event if the actual value of startTime 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