Module Values.CreatePackageRequestSource

Container for request parameters to CreatePackage operation.

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

    Unique identifier for the package.

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

    Type of package. Currently supports only TXT-DICTIONARY.

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

    Description of the package.

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

    The customer S3 location PackageSource for importing the package.

    *)
}
Sourceval context_ : string
Sourceval make : ?packageDescription:??? -> 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 * [> `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