ListEventSourceMappingsResponse

APIs.ioEngineeringPlatform

Properties

Name Type Description
NextMarker object
EventSourceMappings object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-listeventsourcemappingsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListEventSourceMappingsResponse",
  "title": "ListEventSourceMappingsResponse",
  "type": "object",
  "properties": {
    "NextMarker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "A pagination token that's returned when the response doesn't contain all event source mappings."
        }
      ]
    },
    "EventSourceMappings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventSourceMappingsList"
        },
        {
          "description": "A list of event source mappings."
        }
      ]
    }
  }
}