interface AdditionalInformationItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.ProjectEvents.CodeBuildBuildStateChange.AdditionalInformationItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#ProjectEvents_CodeBuildBuildStateChange_AdditionalInformationItem |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.ProjectEvents.CodeBuildBuildStateChange.AdditionalInformationItem |
Python | aws_cdk.mixins_preview.aws_codebuild.events.ProjectEvents.CodeBuildBuildStateChange.AdditionalInformationItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป ProjectEvents ยป CodeBuildBuildStateChange ยป AdditionalInformationItem |
Type definition for Additional-informationItem.
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 additionalInformationItem: codebuild_events.ProjectEvents.CodeBuildBuildStateChange.AdditionalInformationItem = {
durationInSeconds: ['durationInSeconds'],
endTime: ['endTime'],
phaseContext: ['phaseContext'],
phaseStatus: ['phaseStatus'],
phaseType: ['phaseType'],
startTime: ['startTime'],
};
Properties
| Name | Type | Description |
|---|---|---|
| duration | string[] | duration-in-seconds property. |
| end | string[] | end-time property. |
| phase | string[] | phase-context property. |
| phase | string[] | phase-status property. |
| phase | string[] | phase-type property. |
| start | string[] | start-time property. |
durationInSeconds?
Type:
string[]
(optional, default: Do not filter on this field)
duration-in-seconds property.
Specify an array of string values to match this event if the actual value of duration-in-seconds 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)
end-time property.
Specify an array of string values to match this event if the actual value of end-time 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)
phase-context property.
Specify an array of string values to match this event if the actual value of 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.
phaseStatus?
Type:
string[]
(optional, default: Do not filter on this field)
phase-status property.
Specify an array of string values to match this event if the actual value of 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.
phaseType?
Type:
string[]
(optional, default: Do not filter on this field)
phase-type property.
Specify an array of string values to match this event if the actual value of phase-type 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)
start-time property.
Specify an array of string values to match this event if the actual value of start-time 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