Amazon DataZone · Schema

Create Domain Request

Request body for creating a DataZone domain.

Data CatalogData GovernanceData ManagementData SharingAnalytics

Properties

Name Type Description
name string
description string
domainExecutionRole string
tags object
View JSON Schema on GitHub

JSON Schema

create-domain-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-datazone/json-schema/create-domain-request-schema.json",
  "title": "Create Domain Request",
  "description": "Request body for creating a DataZone domain.",
  "type": "object",
  "required": [
    "name",
    "domainExecutionRole"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "domainExecutionRole": {
      "type": "string"
    },
    "tags": {
      "type": "object"
    }
  }
}