Module Values_0.UpdatePackageRequestSource

Updates the supported fields for a specific software package. Requires permission to access the UpdatePackage and GetIndexingConfiguration actions.

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

    The name of the target software package.

    *)
  2. description : ResourceDescription.t option;
    (*

    The package description.

    *)
  3. defaultVersionName : VersionName.t option;
    (*

    The name of the default package version. Note: You cannot name a defaultVersion and set unsetDefaultVersion equal to true at the same time.

    *)
  4. unsetDefaultVersion : UnsetDefaultVersion.t option;
    (*

    Indicates whether you want to remove the named default package version from the software package. Set as true to remove the default package version. Note: You cannot name a defaultVersion and set unsetDefaultVersion equal to true at the same time.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?defaultVersionName:??? -> ?unsetDefaultVersion:??? -> ?clientToken:??? -> packageName:PackageName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of UnsetDefaultVersion.t | `String of PackageName.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