CreatePackageRequest

Container for request parameters to CreatePackage operation.

AnalyticsElasticsearchSearch

Properties

Name Type Description
PackageName object
PackageType object
PackageDescription object
PackageSource object
View JSON Schema on GitHub

JSON Schema

openapi-create-package-request-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-create-package-request-schema.json",
  "title": "CreatePackageRequest",
  "description": " Container for request parameters to <code> <a>CreatePackage</a> </code> operation. ",
  "type": "object",
  "properties": {
    "PackageName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageName"
        },
        {
          "description": "Unique identifier for the package."
        }
      ]
    },
    "PackageType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageType"
        },
        {
          "description": "Type of package. Currently supports only TXT-DICTIONARY."
        }
      ]
    },
    "PackageDescription": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageDescription"
        },
        {
          "description": "Description of the package."
        }
      ]
    },
    "PackageSource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageSource"
        },
        {
          "description": "The customer S3 location <code>PackageSource</code> for importing the package."
        }
      ]
    }
  },
  "required": [
    "PackageName",
    "PackageType",
    "PackageSource"
  ]
}