interface RuleEvaluationMetrics
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Events.GameLiftMatchmakingEvent.RuleEvaluationMetrics |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/events#GameLiftMatchmakingEvent_RuleEvaluationMetrics |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.events.GameLiftMatchmakingEvent.RuleEvaluationMetrics |
Python | aws_cdk.mixins_preview.aws_gamelift.events.GameLiftMatchmakingEvent.RuleEvaluationMetrics |
TypeScript | @aws-cdk/mixins-preview ยป aws_gamelift ยป events ยป GameLiftMatchmakingEvent ยป RuleEvaluationMetrics |
Type definition for RuleEvaluationMetrics.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as gamelift_events } from '@aws-cdk/mixins-preview/aws-gamelift';
const ruleEvaluationMetrics: gamelift_events.GameLiftMatchmakingEvent.RuleEvaluationMetrics = {
failedCount: ['failedCount'],
passedCount: ['passedCount'],
ruleName: ['ruleName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| failed | string[] | failedCount property. |
| passed | string[] | passedCount property. |
| rule | string[] | ruleName property. |
failedCount?
Type:
string[]
(optional, default: Do not filter on this field)
failedCount property.
Specify an array of string values to match this event if the actual value of failedCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
passedCount?
Type:
string[]
(optional, default: Do not filter on this field)
passedCount property.
Specify an array of string values to match this event if the actual value of passedCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
ruleName?
Type:
string[]
(optional, default: Do not filter on this field)
ruleName property.
Specify an array of string values to match this event if the actual value of ruleName 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