Module Values.UpdateLicenseAssetGroupRequestSource

Updates a license asset group.

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

    License asset group name.

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

    License asset group description.

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

    License asset group configurations.

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

    ARNs of associated license asset rulesets.

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

    License asset group properties.

    *)
  6. licenseAssetGroupArn : Arn.t;
    (*

    Amazon Resource Name (ARN) of the license asset group.

    *)
  7. status : LicenseAssetGroupStatus.t option;
    (*

    License asset group status. The possible values are ACTIVE | DISABLED.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?licenseAssetGroupConfigurations:??? -> ?properties:??? -> ?status:??? -> associatedLicenseAssetRulesetARNs:LicenseAssetRulesetArnList.t -> licenseAssetGroupArn:Arn.t -> clientToken:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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