interface Event
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Events.AWSXRayInsightUpdate.Event |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/events#AWSXRayInsightUpdate_Event |
Java | software.amazon.awscdk.mixins.preview.services.xray.events.AWSXRayInsightUpdate.Event |
Python | aws_cdk.mixins_preview.aws_xray.events.AWSXRayInsightUpdate.Event |
TypeScript | @aws-cdk/mixins-preview ยป aws_xray ยป events ยป AWSXRayInsightUpdate ยป Event |
Type definition for Event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as xray_events } from '@aws-cdk/mixins-preview/aws-xray';
declare const names: any;
const event: xray_events.AWSXRayInsightUpdate.Event = {
clientRequestImpactStatistics: {
faultCount: ['faultCount'],
okCount: ['okCount'],
totalCount: ['totalCount'],
},
eventTime: ['eventTime'],
rootCauseServiceRequestImpactStatistics: {
faultCount: ['faultCount'],
okCount: ['okCount'],
totalCount: ['totalCount'],
},
summary: ['summary'],
topAnomalousServices: [{
serviceId: {
accountId: ['accountId'],
name: ['name'],
names: [names],
type: ['type'],
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | Client | ClientRequestImpactStatistics property. |
| event | string[] | EventTime property. |
| root | Client | RootCauseServiceRequestImpactStatistics property. |
| summary? | string[] | Summary property. |
| top | Awsx[] | TopAnomalousServices property. |
clientRequestImpactStatistics?
Type:
Client
(optional, default: Do not filter on this field)
ClientRequestImpactStatistics property.
Specify an array of string values to match this event if the actual value of ClientRequestImpactStatistics is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventTime?
Type:
string[]
(optional, default: Do not filter on this field)
EventTime property.
Specify an array of string values to match this event if the actual value of EventTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
rootCauseServiceRequestImpactStatistics?
Type:
Client
(optional, default: Do not filter on this field)
RootCauseServiceRequestImpactStatistics property.
Specify an array of string values to match this event if the actual value of RootCauseServiceRequestImpactStatistics is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
summary?
Type:
string[]
(optional, default: Do not filter on this field)
Summary property.
Specify an array of string values to match this event if the actual value of Summary is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
topAnomalousServices?
Type:
Awsx[]
(optional, default: Do not filter on this field)
TopAnomalousServices property.
Specify an array of string values to match this event if the actual value of TopAnomalousServices 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