Module Values.AssociatePackageRequestSource

Container for the request parameters to the AssociatePackage operation.

Sourcetype nonrec t = {
  1. packageID : PackageID.t;
    (*

    Internal ID of the package to associate with a domain. Use DescribePackages to find this value.

    *)
  2. domainName : DomainName.t;
    (*

    Name of the domain to associate the package with.

    *)
  3. prerequisitePackageIDList : PackageIDList.t option;
    (*

    A list of package IDs that must be associated with the domain before the package specified in the request can be associated.

    *)
  4. associationConfiguration : PackageAssociationConfiguration.t option;
    (*

    The configuration for associating a package with an Amazon OpenSearch Service domain.

    *)
}
Sourceval context_ : string
Sourceval make : ?prerequisitePackageIDList:??? -> ?associationConfiguration:??? -> packageID:PackageID.t -> domainName:DomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of PackageID.t ] list | `String of PackageID.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `String of RoleArn.t ]) list ]) 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