DescribeContinuousExportsRequest

DescribeContinuousExportsRequest schema from Amazon Application Discovery Service API

Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Properties

Name Type Description
exportIds array The unique IDs assigned to the exports.
maxResults integer A number between 1 and 100 specifying the maximum number of continuous export descriptions returned.
nextToken string The token from the previous call to DescribeExportTasks.
View JSON Schema on GitHub

JSON Schema

application-discovery-service-describe-continuous-exports-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-schema/application-discovery-service-describe-continuous-exports-request-schema.json",
  "title": "DescribeContinuousExportsRequest",
  "description": "DescribeContinuousExportsRequest schema from Amazon Application Discovery Service API",
  "type": "object",
  "properties": {
    "exportIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "continuous-export-500123"
      ],
      "description": "The unique IDs assigned to the exports."
    },
    "maxResults": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "example": 10,
      "description": "A number between 1 and 100 specifying the maximum number of continuous export descriptions returned."
    },
    "nextToken": {
      "type": "string",
      "example": "",
      "description": "The token from the previous call to DescribeExportTasks."
    }
  }
}