Amazon MSK · Schema

CreateConfigurationResponse

CreateConfigurationResponse schema from Amazon MSK API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Arn object
CreationTime object
LatestRevision object
Name object
State object
View JSON Schema on GitHub

JSON Schema

msk-api-create-configuration-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-create-configuration-response-schema.json",
  "title": "CreateConfigurationResponse",
  "description": "CreateConfigurationResponse schema from Amazon MSK API",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "arn"
          },
          "description": "\n            <p>The Amazon Resource Name (ARN) of the configuration.</p>"
        }
      ]
    },
    "CreationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampIso8601"
        },
        {
          "xml": {
            "name": "creationTime"
          },
          "description": "\n            <p>The time when the configuration was created.</p>"
        }
      ]
    },
    "LatestRevision": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigurationRevision"
        },
        {
          "xml": {
            "name": "latestRevision"
          },
          "description": "\n            <p>Latest revision of the configuration.</p>"
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "\n            <p>The name of the configuration.</p>"
        }
      ]
    },
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigurationState"
        },
        {
          "xml": {
            "name": "state"
          },
          "description": "\n            <p>The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED. </p>"
        }
      ]
    }
  }
}