Module Values_1.CreatePackageVersionRequestSource

Creates a new version for an existing IoT software package. Requires permission to access the CreatePackageVersion and GetIndexingConfiguration actions.

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

    The name of the associated software package.

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

    The name of the new package version.

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

    A summary of the package version being created. This can be used to outline the package's contents or purpose.

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

    Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet. The combined size of all the attributes on a package version is limited to 3KB.

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

    The various build components created during the build process such as libraries and configuration files that make up a software package version.

    *)
  6. recipe : Values_0.PackageVersionRecipe.t option;
    (*

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

    *)
  7. tags : Values_0.TagMap.t option;
    (*

    Metadata that can be used to manage the package version.

    *)
  8. clientToken : Values_0.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:??? -> ?recipe:??? -> ?tags:??? -> ?clientToken:??? -> packageName:Values_0.PackageName.t -> versionName:Values_0.VersionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.PackageName.t | `Structure of (string * [> `Structure of (string * [> `String of string ]) 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