Module Values.UpdatePackageGroupRequestSource

Updates a package group. This API cannot be used to update a package group's origin configuration or pattern. To update a package group's origin configuration, use UpdatePackageGroupOriginConfiguration.

Sourcetype nonrec t = {
  1. domain : DomainName.t;
    (*

    The name of the domain which contains the package group to be updated.

    *)
  2. domainOwner : AccountId.t option;
    (*

    The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

    *)
  3. packageGroup : PackageGroupPattern.t;
    (*

    The pattern of the package group to be updated.

    *)
  4. contactInfo : PackageGroupContactInfo.t option;
    (*

    Contact information which you want to update the requested package group with.

    *)
  5. description : Description.t option;
    (*

    The description you want to update the requested package group with.

    *)
}
Sourceval context_ : string
Sourceval make : ?domainOwner:??? -> ?contactInfo:??? -> ?description:??? -> domain:DomainName.t -> packageGroup:PackageGroupPattern.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainName.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