Auth0 · Schema

LogStreamEventBridgeSink

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
awsAccountId string AWS account ID
awsRegion object
awsPartnerEventSource string AWS EventBridge partner event source
View JSON Schema on GitHub

JSON Schema

auth0-logstreameventbridgesink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogStreamEventBridgeSink",
  "title": "LogStreamEventBridgeSink",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "awsAccountId",
    "awsRegion"
  ],
  "properties": {
    "awsAccountId": {
      "type": "string",
      "description": "AWS account ID",
      "pattern": "^\\d{12}$"
    },
    "awsRegion": {
      "$ref": "#/components/schemas/LogStreamEventBridgeSinkRegionEnum"
    },
    "awsPartnerEventSource": {
      "type": "string",
      "description": "AWS EventBridge partner event source"
    }
  }
}