Fastly · Schema

Role

An IAM role that defines a set of permissions for Fastly resources.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string The alphanumeric string identifying the role.
name string The name of the role.
description string A description of the role.
custom boolean Whether this is a custom role.
permissions_count integer The number of permissions associated with the role.
created_at string The date and time the role was created.
updated_at string The date and time the role was last updated.
View JSON Schema on GitHub

JSON Schema

fastly-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Role",
  "title": "Role",
  "type": "object",
  "description": "An IAM role that defines a set of permissions for Fastly resources.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alphanumeric string identifying the role."
    },
    "name": {
      "type": "string",
      "description": "The name of the role."
    },
    "description": {
      "type": "string",
      "description": "A description of the role."
    },
    "custom": {
      "type": "boolean",
      "description": "Whether this is a custom role."
    },
    "permissions_count": {
      "type": "integer",
      "description": "The number of permissions associated with the role."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the role was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the role was last updated."
    }
  }
}