Skip to content

Get License Usage

licensemanager_get_license_usage R Documentation

Gets detailed information about the usage of the specified license

Description

Gets detailed information about the usage of the specified license.

Usage

licensemanager_get_license_usage(LicenseArn)

Arguments

LicenseArn

[required] Amazon Resource Name (ARN) of the license.

Value

A list with the following syntax:

list(
  LicenseUsage = list(
    EntitlementUsages = list(
      list(
        Name = "string",
        ConsumedValue = "string",
        MaxCount = "string",
        Unit = "Count"|"None"|"Seconds"|"Microseconds"|"Milliseconds"|"Bytes"|"Kilobytes"|"Megabytes"|"Gigabytes"|"Terabytes"|"Bits"|"Kilobits"|"Megabits"|"Gigabits"|"Terabits"|"Percent"|"Bytes/Second"|"Kilobytes/Second"|"Megabytes/Second"|"Gigabytes/Second"|"Terabytes/Second"|"Bits/Second"|"Kilobits/Second"|"Megabits/Second"|"Gigabits/Second"|"Terabits/Second"|"Count/Second"
      )
    )
  )
)

Request syntax

svc$get_license_usage(
  LicenseArn = "string"
)