interface ClientRequestImpactStatistics
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Events.AWSXRayInsightUpdate.ClientRequestImpactStatistics |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/events#AWSXRayInsightUpdate_ClientRequestImpactStatistics |
Java | software.amazon.awscdk.mixins.preview.services.xray.events.AWSXRayInsightUpdate.ClientRequestImpactStatistics |
Python | aws_cdk.mixins_preview.aws_xray.events.AWSXRayInsightUpdate.ClientRequestImpactStatistics |
TypeScript | @aws-cdk/mixins-preview ยป aws_xray ยป events ยป AWSXRayInsightUpdate ยป ClientRequestImpactStatistics |
Type definition for ClientRequestImpactStatistics.
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';
const clientRequestImpactStatistics: xray_events.AWSXRayInsightUpdate.ClientRequestImpactStatistics = {
faultCount: ['faultCount'],
okCount: ['okCount'],
totalCount: ['totalCount'],
};
Properties
| Name | Type | Description |
|---|---|---|
| fault | string[] | FaultCount property. |
| ok | string[] | OkCount property. |
| total | string[] | TotalCount property. |
faultCount?
Type:
string[]
(optional, default: Do not filter on this field)
FaultCount property.
Specify an array of string values to match this event if the actual value of FaultCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
okCount?
Type:
string[]
(optional, default: Do not filter on this field)
OkCount property.
Specify an array of string values to match this event if the actual value of OkCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
totalCount?
Type:
string[]
(optional, default: Do not filter on this field)
TotalCount property.
Specify an array of string values to match this event if the actual value of TotalCount 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