{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--S3FileMemory.json",
  "title": "S3FileMemory",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/FileMemory/S3FileMemory.json",
    "sourceSha256": "da0cc897b94cf7bdadc5befa29d12180c2bfa3cad23e4465dddbd706da2b464d"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "S3FileMemory",
      "title": "Implementation"
    },
    "bucket": {
      "title": "Bucket",
      "type": "string"
    },
    "region_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Region Name"
    },
    "aws_access_key_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Aws Access Key Id"
    },
    "aws_secret_access_key": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Aws Secret Access Key"
    },
    "aws_session_token": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Aws Session Token"
    },
    "session_args": {
      "default": {},
      "description": "Additional arguments to pass to the boto3 session.",
      "title": "Session Args",
      "type": "object"
    },
    "create_bucket_on_startup": {
      "default": false,
      "title": "Create Bucket On Startup",
      "type": "boolean"
    }
  },
  "additionalProperties": false,
  "required": [
    "bucket",
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.memory.s3_file_memory.S3FileMemory",
    "groups": [
      "FileMemory"
    ],
    "name": "S3FileMemory",
    "overrides": {}
  }
}
