interface AWSXRayInsightUpdateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Events.AWSXRayInsightUpdate.AWSXRayInsightUpdateProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/events#AWSXRayInsightUpdate_AWSXRayInsightUpdateProps |
Java | software.amazon.awscdk.mixins.preview.services.xray.events.AWSXRayInsightUpdate.AWSXRayInsightUpdateProps |
Python | aws_cdk.mixins_preview.aws_xray.events.AWSXRayInsightUpdate.AWSXRayInsightUpdateProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_xray ยป events ยป AWSXRayInsightUpdate ยป AWSXRayInsightUpdateProps |
Props type for aws.xray@AWSXRayInsightUpdate 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 aWSXRayInsightUpdateProps: xray_events.AWSXRayInsightUpdate.AWSXRayInsightUpdateProps = {
categories: ['categories'],
clientRequestImpactStatistics: {
faultCount: ['faultCount'],
okCount: ['okCount'],
totalCount: ['totalCount'],
},
endTime: ['endTime'],
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'],
},
}],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
groupName: ['groupName'],
insightId: ['insightId'],
rootCauseServiceId: {
accountId: ['accountId'],
name: ['name'],
names: [names],
type: ['type'],
},
rootCauseServiceRequestImpactStatistics: {
faultCount: ['faultCount'],
okCount: ['okCount'],
totalCount: ['totalCount'],
},
startTime: ['startTime'],
state: ['state'],
summary: ['summary'],
topAnomalousServices: [{
serviceId: {
accountId: ['accountId'],
name: ['name'],
names: [names],
type: ['type'],
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| categories? | string[] | Categories property. |
| client | Client | ClientRequestImpactStatistics property. |
| end | string[] | EndTime property. |
| event? | Event | Event property. |
| event | AWSEvent | EventBridge event metadata. |
| group | string[] | GroupName property. |
| insight | string[] | InsightId property. |
| root | Root | RootCauseServiceId property. |
| root | Client | RootCauseServiceRequestImpactStatistics property. |
| start | string[] | StartTime property. |
| state? | string[] | State property. |
| summary? | string[] | Summary property. |
| top | Awsx[] | TopAnomalousServices property. |
categories?
Type:
string[]
(optional, default: Do not filter on this field)
Categories property.
Specify an array of string values to match this event if the actual value of Categories is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
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.
endTime?
Type:
string[]
(optional, default: Do not filter on this field)
EndTime property.
Specify an array of string values to match this event if the actual value of EndTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
event?
Type:
Event
(optional, default: Do not filter on this field)
Event property.
Specify an array of string values to match this event if the actual value of Event is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
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.
insightId?
Type:
string[]
(optional, default: Do not filter on this field)
InsightId property.
Specify an array of string values to match this event if the actual value of InsightId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
rootCauseServiceId?
Type:
Root
(optional, default: Do not filter on this field)
RootCauseServiceId property.
Specify an array of string values to match this event if the actual value of RootCauseServiceId 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.
startTime?
Type:
string[]
(optional, default: Do not filter on this field)
StartTime property.
Specify an array of string values to match this event if the actual value of StartTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
State property.
Specify an array of string values to match this event if the actual value of State 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