Module Values.DomainPackageDetailsSource

Information on a package that is associated with a domain.

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;
    (*

    Currently supports only TXT-DICTIONARY.

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

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

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

    Name of the domain you've associated a package with.

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

    State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.

    *)
  7. packageVersion : PackageVersion.t option;
  8. referencePath : ReferencePath.t option;
    (*

    The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.

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

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

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