Module Values_0.UpdatePackageVersionRequestSource

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

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

    The name of the associated software package.

    *)
  2. versionName : VersionName.t;
    (*

    The name of the target package version.

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

    The package version description.

    *)
  4. attributes : ResourceAttributes.t option;
    (*

    Metadata that can be used to define a package version’s configuration. For example, the Amazon S3 file location, configuration options that are being sent to the device or fleet. Note: Attributes can be updated only when the package version is in a draft state. The combined size of all the attributes on a package version is limited to 3KB.

    *)
  5. artifact : PackageVersionArtifact.t option;
    (*

    The various components that make up a software package version.

    *)
  6. action : PackageVersionAction.t option;
    (*

    The status that the package version should be assigned. For more information, see Package version lifecycle.

    *)
  7. recipe : PackageVersionRecipe.t option;
    (*

    The inline job document associated with a software package version used for a quick job deployment.

    *)
  8. 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:??? -> ?attributes:??? -> ?artifact:??? -> ?action:??? -> ?recipe:??? -> ?clientToken:??? -> packageName:PackageName.t -> versionName:VersionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of ResourceAttributeKey.t ] * [> `String of ResourceAttributeValue.t ]) list | `String of PackageName.t | `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.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