PackageSource

The S3 location for importing the package specified as S3BucketName and S3Key

AnalyticsElasticsearchSearch

Properties

Name Type Description
S3BucketName object
S3Key object
View JSON Schema on GitHub

JSON Schema

openapi-package-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-package-source-schema.json",
  "title": "PackageSource",
  "description": "The S3 location for importing the package specified as <code>S3BucketName</code> and <code>S3Key</code>",
  "type": "object",
  "properties": {
    "S3BucketName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3BucketName"
        },
        {
          "description": "Name of the bucket containing the package."
        }
      ]
    },
    "S3Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "Key (file name) of the package."
        }
      ]
    }
  }
}