Module Values.DomainPackageDetailsSource

Information about a package that is associated with a domain. For more information, see Custom packages for Amazon OpenSearch Service.

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

    Internal ID of the package.

    *)
  2. packageName : PackageName.t option;
    (*

    User-specified name of the package.

    *)
  3. packageType : PackageType.t option;
    (*

    The type of package.

    *)
  4. lastUpdated : LastUpdated.t option;
    (*

    Timestamp of the most recent update to the package association status.

    *)
  5. domainName : DomainName.t option;
    (*

    Name of the domain that the package is associated with.

    *)
  6. domainPackageStatus : DomainPackageStatus.t option;
    (*

    State of the association.

    *)
  7. packageVersion : PackageVersion.t option;
    (*

    The current version of the package.

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

    A list of package IDs that must be associated with the domain before or with the package can be associated.

    *)
  9. referencePath : ReferencePath.t option;
    (*

    The relative path of the package on the OpenSearch Service cluster nodes. This is synonym_path when the package is for synonym files.

    *)
  10. errorDetails : ErrorDetails.t option;
    (*

    Additional information if the package is in an error state. Null otherwise.

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

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

    *)
}
Sourceval make : ?packageID:??? -> ?packageName:??? -> ?packageType:??? -> ?lastUpdated:??? -> ?domainName:??? -> ?domainPackageStatus:??? -> ?packageVersion:??? -> ?prerequisitePackageIDList:??? -> ?referencePath:??? -> ?errorDetails:??? -> ?associationConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of PackageID.t ] list | `String of PackageID.t | `Structure of (string * [> `String of ErrorType.t | `Structure of (string * [> `Boolean of Boolean.t | `String of RoleArn.t ]) list ]) list | `Timestamp of LastUpdated.t ]) 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