Module Values.LicenseConfigurationUsageSource

Details about the usage of a resource associated with a license configuration.

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

    Amazon Resource Name (ARN) of the resource.

    *)
  2. resourceType : ResourceType.t option;
    (*

    Type of resource.

    *)
  3. resourceStatus : String_.t option;
    (*

    Status of the resource.

    *)
  4. resourceOwnerId : String_.t option;
    (*

    ID of the account that owns the resource.

    *)
  5. associationTime : DateTime.t option;
    (*

    Time when the license configuration was initially associated with the resource.

    *)
  6. consumedLicenses : BoxLong.t option;
    (*

    Number of licenses consumed by the resource.

    *)
}
Sourceval make : ?resourceArn:??? -> ?resourceType:??? -> ?resourceStatus:??? -> ?resourceOwnerId:??? -> ?associationTime:??? -> ?consumedLicenses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of BoxLong.t | `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