Module Values.CreatePackageRequestSource

Container for request parameters to the CreatePackage operation.

Sourcetype nonrec t = {
  1. packageName : PackageName.t;
    (*

    Unique name for the package.

    *)
  2. packageType : PackageType.t;
    (*

    The type of package.

    *)
  3. packageDescription : PackageDescription.t option;
    (*

    Description of the package.

    *)
  4. packageSource : PackageSource.t;
    (*

    The Amazon S3 location from which to import the package.

    *)
  5. packageConfiguration : PackageConfiguration.t option;
    (*

    The configuration parameters for the package being created.

    *)
  6. engineVersion : EngineVersion.t option;
    (*

    The version of the Amazon OpenSearch Service engine for which is compatible with the package. This can only be specified for package type ZIP-PLUGIN

    *)
  7. packageVendingOptions : PackageVendingOptions.t option;
    (*

    The vending options for the package being created. They determine if the package can be vended to other users.

    *)
  8. packageEncryptionOptions : PackageEncryptionOptions.t option;
    (*

    The encryption parameters for the package being created.

    *)
}
Sourceval context_ : string
Sourceval make : ?packageDescription:??? -> ?packageConfiguration:??? -> ?engineVersion:??? -> ?packageVendingOptions:??? -> ?packageEncryptionOptions:??? -> packageName:PackageName.t -> packageType:PackageType.t -> packageSource:PackageSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PackageName.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of S3BucketName.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t