interface Logs
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Events.ProjectEvents.CodeBuildBuildPhaseChange.Logs |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/events#ProjectEvents_CodeBuildBuildPhaseChange_Logs |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.Logs |
Python | aws_cdk.mixins_preview.aws_codebuild.events.ProjectEvents.CodeBuildBuildPhaseChange.Logs |
TypeScript | @aws-cdk/mixins-preview ยป aws_codebuild ยป events ยป ProjectEvents ยป CodeBuildBuildPhaseChange ยป Logs |
Type definition for Logs.
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 logs: codebuild_events.ProjectEvents.CodeBuildBuildPhaseChange.Logs = {
deepLink: ['deepLink'],
groupName: ['groupName'],
streamName: ['streamName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| deep | string[] | deep-link property. |
| group | string[] | group-name property. |
| stream | string[] | stream-name property. |
deepLink?
Type:
string[]
(optional, default: Do not filter on this field)
deep-link property.
Specify an array of string values to match this event if the actual value of deep-link is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
groupName?
Type:
string[]
(optional, default: Do not filter on this field)
group-name property.
Specify an array of string values to match this event if the actual value of group-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
streamName?
Type:
string[]
(optional, default: Do not filter on this field)
stream-name property.
Specify an array of string values to match this event if the actual value of stream-name 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