EventStreamsRouteFilterGroup
Filter group containing multiple conditions. Conditions are evaluated sequentially, with each condition (except the first) specifying how it combines with the previous condition using a logical operator.
Example: condition1 AND condition2 OR condition3
type EventStreamsRouteFilterGroup {
name: String!
outputTopic: String!
conditions: [EventStreamsRouteFilterCondition!]!
}
Fields
EventStreamsRouteFilterGroup.name ● String! non-null scalar miscellaneous
Name of this filter group
EventStreamsRouteFilterGroup.outputTopic ● String! non-null scalar miscellaneous
Output topic to route matching messages to
EventStreamsRouteFilterGroup.conditions ● [EventStreamsRouteFilterCondition!]! non-null object event-streams-admin
List of conditions to evaluate sequentially. Each condition (except the first) has a logicalOperator that connects it to the previous condition.
Member Of
EventStreamsRoute object