{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamEventBridgeConfiguration", "title": "EventStreamEventBridgeConfiguration", "type": "object", "description": "Configuration specific to an eventbridge destination.", "additionalProperties": false, "required": [ "aws_account_id", "aws_region" ], "properties": { "aws_account_id": { "type": "string", "description": "AWS Account ID for EventBridge destination.\n", "pattern": "^\\d{12}$" }, "aws_region": { "$ref": "#/components/schemas/EventStreamEventBridgeAWSRegionEnum" }, "aws_partner_event_source": { "type": "string", "description": "AWS Partner Event Source for EventBridge destination.\n" } } }