Amazon DataZone · Schema

Environment

A DataZone environment that provides data access capabilities for a project.

Data CatalogData GovernanceData ManagementData SharingAnalytics

Properties

Name Type Description
id string The unique identifier of the environment
domainId string
projectId string
name string
status string
createdAt string
View JSON Schema on GitHub

JSON Schema

environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-datazone/json-schema/environment-schema.json",
  "title": "Environment",
  "description": "A DataZone environment that provides data access capabilities for a project.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the environment"
    },
    "domainId": {
      "type": "string"
    },
    "projectId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "CREATING",
        "DELETED"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}