Skip to content

List Licenses

licensemanager_list_licenses R Documentation

Lists the licenses for your account

Description

Lists the licenses for your account.

Usage

licensemanager_list_licenses(LicenseArns, Filters, NextToken,
  MaxResults)

Arguments

LicenseArns

Amazon Resource Names (ARNs) of the licenses.

Filters

Filters to scope the results. The following filters are supported:

  • Beneficiary

  • ProductSKU

  • Fingerprint

  • Status

NextToken

Token for the next set of results.

MaxResults

Maximum number of results to return in a single call.

Value

A list with the following syntax:

list(
  Licenses = list(
    list(
      LicenseArn = "string",
      LicenseName = "string",
      ProductName = "string",
      ProductSKU = "string",
      Issuer = list(
        Name = "string",
        SignKey = "string",
        KeyFingerprint = "string"
      ),
      HomeRegion = "string",
      Status = "AVAILABLE"|"PENDING_AVAILABLE"|"DEACTIVATED"|"SUSPENDED"|"EXPIRED"|"PENDING_DELETE"|"DELETED",
      Validity = list(
        Begin = "string",
        End = "string"
      ),
      Beneficiary = "string",
      Entitlements = list(
        list(
          Name = "string",
          Value = "string",
          MaxCount = 123,
          Overage = TRUE|FALSE,
          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",
          AllowCheckIn = TRUE|FALSE
        )
      ),
      ConsumptionConfiguration = list(
        RenewType = "None"|"Weekly"|"Monthly",
        ProvisionalConfiguration = list(
          MaxTimeToLiveInMinutes = 123
        ),
        BorrowConfiguration = list(
          AllowEarlyCheckIn = TRUE|FALSE,
          MaxTimeToLiveInMinutes = 123
        )
      ),
      LicenseMetadata = list(
        list(
          Name = "string",
          Value = "string"
        )
      ),
      CreateTime = "string",
      Version = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_licenses(
  LicenseArns = list(
    "string"
  ),
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  NextToken = "string",
  MaxResults = 123
)