Cloudflare R2 · Schema

R2 Temp_Access_Creds_Response

Object StorageCloud StorageS3-CompatibleEgress-FreeBucketsDeveloper PlatformCloudflare

Properties

Name Type Description
accessKeyId string ID for new access key.
secretAccessKey string Secret access key.
sessionToken string Security token.
View JSON Schema on GitHub

JSON Schema

cloudflare-r2-temp-access-creds-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cloudflare-r2/main/json-schema/cloudflare-r2-temp-access-creds-response.json",
  "title": "R2 Temp_Access_Creds_Response",
  "example": {
    "accessKeyId": "example-access-key-id",
    "secretAccessKey": "example-secret-key",
    "sessionToken": "example-session-token"
  },
  "properties": {
    "accessKeyId": {
      "description": "ID for new access key.",
      "type": "string"
    },
    "secretAccessKey": {
      "description": "Secret access key.",
      "type": "string",
      "x-sensitive": true
    },
    "sessionToken": {
      "description": "Security token.",
      "type": "string",
      "x-sensitive": true
    }
  },
  "type": "object"
}