Auth0 · Schema

EventStreamEventBridgeConfiguration

Configuration specific to an eventbridge destination.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
aws_account_id string AWS Account ID for EventBridge destination.
aws_region object
aws_partner_event_source string AWS Partner Event Source for EventBridge destination.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreameventbridgeconfiguration-schema.json Raw ↑
{
  "$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"
    }
  }
}