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