Amazon Incident Manager · JSON Structure

Incident Manager Replication Set Structure

The set of Amazon Web Services Region that your Incident Manager data will be replicated to and the KMS key used to encrypt the data.

Type: object Properties: 8 Required: 7
AutomationDevOpsIncident ManagementOperations

ReplicationSet is a JSON Structure definition published by Amazon Incident Manager, describing 8 properties, of which 7 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn createdBy createdTime deletionProtected lastModifiedBy lastModifiedTime regionMap status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-structure/incident-manager-replication-set-structure.json",
  "name": "ReplicationSet",
  "description": "The set of Amazon Web Services Region that your Incident Manager data will be replicated to and the KMS key used to encrypt the data. ",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the replication set."
        }
      ]
    },
    "createdBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "Details about who created the replication set."
        }
      ]
    },
    "createdTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "When the replication set was created."
        }
      ]
    },
    "deletionProtected": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Determines if the replication set deletion protection is enabled or not. If deletion protection is enabled, you can't delete the last Amazon Web Services Region in the replication set. "
        }
      ]
    },
    "lastModifiedBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "Who last modified the replication set."
        }
      ]
    },
    "lastModifiedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "When the replication set was last updated."
        }
      ]
    },
    "regionMap": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegionInfoMap"
        },
        {
          "description": "The map between each Amazon Web Services Region in your replication set and the KMS key that's used to encrypt the data in that Region."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReplicationSetStatus"
        },
        {
          "description": "The status of the replication set. If the replication set is still pending, you can't use Incident Manager functionality."
        }
      ]
    }
  },
  "required": [
    "createdBy",
    "createdTime",
    "deletionProtected",
    "lastModifiedBy",
    "lastModifiedTime",
    "regionMap",
    "status"
  ]
}