Amazon Snow Family · Schema

ClusterListEntry

Contains a cluster's state, a cluster's ID, and other important information.

Data MigrationEdge ComputingOffline TransferPhysical Appliance

Properties

Name Type Description
ClusterId object
ClusterState object
CreationDate object
Description object
View JSON Schema on GitHub

JSON Schema

amazon-snow-family-cluster-list-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-cluster-list-entry-schema.json",
  "title": "ClusterListEntry",
  "description": "Contains a cluster's state, a cluster's ID, and other important information.",
  "type": "object",
  "properties": {
    "ClusterId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The 39-character ID for the cluster that you want to list, for example <code>CID123e4567-e89b-12d3-a456-426655440000</code>."
        }
      ]
    },
    "ClusterState": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClusterState"
        },
        {
          "description": "The current state of this cluster. For information about the state of a specific node, see <a>JobListEntry$JobState</a>."
        }
      ]
    },
    "CreationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The creation date for this cluster."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Defines an optional description of the cluster, for example <code>Environmental Data Cluster-01</code>."
        }
      ]
    }
  }
}