{ "$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-metadata-schema.json", "title": "ClusterMetadata", "description": "Contains metadata about a specific cluster.", "type": "object", "properties": { "ClusterId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The automatically generated ID for a cluster." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The optional description of the cluster." } ] }, "KmsKeyARN": { "allOf": [ { "$ref": "#/components/schemas/KmsKeyARN" }, { "description": "The KmsKeyARN Amazon Resource Name (ARN) associated with this cluster. This ARN was created using the CreateKey API action in Key Management Service (KMS." } ] }, "RoleARN": { "allOf": [ { "$ref": "#/components/schemas/RoleARN" }, { "description": "The role ARN associated with this cluster. This ARN was created using the CreateRole API action in Identity and Access Management (IAM)." } ] }, "ClusterState": { "allOf": [ { "$ref": "#/components/schemas/ClusterState" }, { "description": "The current status of the cluster." } ] }, "JobType": { "allOf": [ { "$ref": "#/components/schemas/JobType" }, { "description": "The type of job for this cluster. Currently, the only job type supported for clusters is LOCAL_USE." } ] }, "SnowballType": { "allOf": [ { "$ref": "#/components/schemas/SnowballType" }, { "description": "

The type of Snowcone device to use for this cluster.

For cluster jobs, Amazon Web Services Snow Family currently supports only the EDGE device type.

" } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The creation date for this cluster." } ] }, "Resources": { "allOf": [ { "$ref": "#/components/schemas/JobResource" }, { "description": "The arrays of JobResource objects that can include updated S3Resource objects or LambdaResource objects." } ] }, "AddressId": { "allOf": [ { "$ref": "#/components/schemas/AddressId" }, { "description": "The automatically generated ID for a specific address." } ] }, "ShippingOption": { "allOf": [ { "$ref": "#/components/schemas/ShippingOption" }, { "description": "

The shipping speed for each node in this cluster. This speed doesn't dictate how soon you'll get each device, rather it represents how quickly each device moves to its destination while in transit. Regional shipping speeds are as follows:

" } ] }, "Notification": { "allOf": [ { "$ref": "#/components/schemas/Notification" }, { "description": "The Amazon Simple Notification Service (Amazon SNS) notification settings for this cluster." } ] }, "ForwardingAddressId": { "allOf": [ { "$ref": "#/components/schemas/AddressId" }, { "description": "The ID of the address that you want a cluster shipped to, after it will be shipped to its primary address. This field is not supported in most regions." } ] }, "TaxDocuments": { "allOf": [ { "$ref": "#/components/schemas/TaxDocuments" }, { "description": "The tax documents required in your Amazon Web Services Region." } ] }, "OnDeviceServiceConfiguration": { "allOf": [ { "$ref": "#/components/schemas/OnDeviceServiceConfiguration" }, { "description": "Represents metadata and configuration settings for services on an Amazon Web Services Snow Family device." } ] } } }