Auth0 · Schema

ClientAddonAWS

AWS addon configuration.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
principal string AWS principal ARN, e.g. `arn:aws:iam::010616021751:saml-provider/idpname`
role string AWS role ARN, e.g. `arn:aws:iam::010616021751:role/foo`
lifetime_in_seconds integer AWS token lifetime in seconds
View JSON Schema on GitHub

JSON Schema

auth0-clientaddonaws-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientAddonAWS",
  "title": "ClientAddonAWS",
  "type": "object",
  "description": "AWS addon configuration.",
  "additionalProperties": true,
  "properties": {
    "principal": {
      "type": "string",
      "description": "AWS principal ARN, e.g. `arn:aws:iam::010616021751:saml-provider/idpname`"
    },
    "role": {
      "type": "string",
      "description": "AWS role ARN, e.g. `arn:aws:iam::010616021751:role/foo`"
    },
    "lifetime_in_seconds": {
      "type": "integer",
      "description": "AWS token lifetime in seconds",
      "minimum": 900,
      "maximum": 43200
    }
  }
}