interface ServiceEventDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Events.AWSServiceEventViaCloudTrail.ServiceEventDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/events#AWSServiceEventViaCloudTrail_ServiceEventDetails |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.events.AWSServiceEventViaCloudTrail.ServiceEventDetails |
Python | aws_cdk.mixins_preview.aws_appmesh.events.AWSServiceEventViaCloudTrail.ServiceEventDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_appmesh ยป events ยป AWSServiceEventViaCloudTrail ยป ServiceEventDetails |
Type definition for ServiceEventDetails.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as appmesh_events } from '@aws-cdk/mixins-preview/aws-appmesh';
const serviceEventDetails: appmesh_events.AWSServiceEventViaCloudTrail.ServiceEventDetails = {
connectionId: ['connectionId'],
eventStatus: ['eventStatus'],
failureReason: ['failureReason'],
nodeArn: ['nodeArn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string[] | connectionId property. |
| event | string[] | eventStatus property. |
| failure | string[] | failureReason property. |
| node | string[] | nodeArn property. |
connectionId?
Type:
string[]
(optional, default: Do not filter on this field)
connectionId property.
Specify an array of string values to match this event if the actual value of connectionId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventStatus?
Type:
string[]
(optional, default: Do not filter on this field)
eventStatus property.
Specify an array of string values to match this event if the actual value of eventStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
failureReason?
Type:
string[]
(optional, default: Do not filter on this field)
failureReason property.
Specify an array of string values to match this event if the actual value of failureReason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
nodeArn?
Type:
string[]
(optional, default: Do not filter on this field)
nodeArn property.
Specify an array of string values to match this event if the actual value of nodeArn 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