SampleDataS3SourceConfig

Contains information about the source configuration in Amazon S3.

Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

Properties

Name Type Description
RoleArn object
TemplatedPathList object
HistoricalDataPathList object
FileFormatDescriptor object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-metrics-sample-data-s3-source-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-schema/amazon-lookout-for-metrics-sample-data-s3-source-config-schema.json",
  "title": "SampleDataS3SourceConfig",
  "description": "Contains information about the source configuration in Amazon S3.",
  "type": "object",
  "properties": {
    "RoleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the role."
        }
      ]
    },
    "TemplatedPathList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplatedPathList"
        },
        {
          "description": "An array of strings containing the list of templated paths."
        }
      ]
    },
    "HistoricalDataPathList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HistoricalDataPathList"
        },
        {
          "description": "An array of strings containing the historical set of data paths."
        }
      ]
    },
    "FileFormatDescriptor": {
      "$ref": "#/components/schemas/FileFormatDescriptor"
    }
  },
  "required": [
    "RoleArn",
    "FileFormatDescriptor"
  ]
}