Interface GameLiftMatchmakingEvent.RuleEvaluationMetrics
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GameLiftMatchmakingEvent.RuleEvaluationMetrics.Jsii$Proxy
- Enclosing class:
GameLiftMatchmakingEvent
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.gamelift.events.*;
RuleEvaluationMetrics ruleEvaluationMetrics = RuleEvaluationMetrics.builder()
.failedCount(List.of("failedCount"))
.passedCount(List.of("passedCount"))
.ruleName(List.of("ruleName"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGameLiftMatchmakingEvent.RuleEvaluationMetricsstatic final classAn implementation forGameLiftMatchmakingEvent.RuleEvaluationMetrics -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) failedCount property.(experimental) passedCount property.(experimental) ruleName property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailedCount
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPassedCount
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getRuleName
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-