Module Values.LicenseAssetGroupSource

License asset group.

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

    License asset group name.

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

    License asset group description.

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

    License asset group configurations.

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

    ARNs of associated license asset rulesets.

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

    License asset group properties.

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

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

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

    License asset group status.

    *)
  8. statusMessage : String_.t option;
    (*

    License asset group status message.

    *)
  9. latestUsageAnalysisTime : DateTime.t option;
    (*

    Latest usage analysis time.

    *)
  10. latestResourceDiscoveryTime : DateTime.t option;
    (*

    Latest resource discovery time.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?licenseAssetGroupConfigurations:??? -> ?associatedLicenseAssetRulesetARNs:??? -> ?properties:??? -> ?licenseAssetGroupArn:??? -> ?status:??? -> ?statusMessage:??? -> ?latestUsageAnalysisTime:??? -> ?latestResourceDiscoveryTime:??? -> 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 String_.t | `Timestamp of DateTime.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