Module Values.CreateLicenseAssetGroupRequestSource

Creates a license asset group.

Sourcetype nonrec t = {
  1. name : LicenseAssetResourceName.t;
    (*

    License asset group name.

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

    License asset group description.

    *)
  3. licenseAssetGroupConfigurations : LicenseAssetGroupConfigurationList.t;
    (*

    License asset group configurations.

    *)
  4. associatedLicenseAssetRulesetARNs : LicenseAssetRulesetArnList.t;
    (*

    ARNs of associated license asset rulesets.

    *)
  5. properties : LicenseAssetGroupPropertyList.t option;
    (*

    License asset group properties.

    *)
  6. tags : TagList.t option;
    (*

    Tags to add to the license asset group.

    *)
  7. clientToken : String_.t;
    (*

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?properties:??? -> ?tags:??? -> name:LicenseAssetResourceName.t -> licenseAssetGroupConfigurations:LicenseAssetGroupConfigurationList.t -> associatedLicenseAssetRulesetARNs:LicenseAssetRulesetArnList.t -> clientToken:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Arn.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of LicenseAssetResourceName.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