Amazon Cognito · Schema

LogDeliveryConfigurationType

The logging parameters of a user pool.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
UserPoolId object
LogConfigurations object
View JSON Schema on GitHub

JSON Schema

user-pools-log-delivery-configuration-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-log-delivery-configuration-type-schema.json",
  "title": "LogDeliveryConfigurationType",
  "description": "The logging parameters of a user pool.",
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The ID of the user pool where you configured detailed activity logging."
        }
      ]
    },
    "LogConfigurations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogConfigurationListType"
        },
        {
          "description": "The detailed activity logging destination of a user pool."
        }
      ]
    }
  },
  "required": [
    "UserPoolId",
    "LogConfigurations"
  ]
}