KmsKey

AWS Key Management Service (KMS) Key.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
kmsAliasArn object
kmsKeyArn object
View JSON Schema on GitHub

JSON Schema

ground-station-kms-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-kms-key-schema.json",
  "title": "KmsKey",
  "description": "AWS Key Management Service (KMS) Key.",
  "type": "object",
  "properties": {
    "kmsAliasArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyAliasArn"
        },
        {
          "description": "KMS Alias Arn."
        }
      ]
    },
    "kmsKeyArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyArn"
        },
        {
          "description": "KMS Key Arn."
        }
      ]
    }
  }
}