Skip to content

Get License Asset Group

licensemanager_get_license_asset_group R Documentation

Gets a license asset group

Description

Gets a license asset group.

Usage

licensemanager_get_license_asset_group(LicenseAssetGroupArn)

Arguments

LicenseAssetGroupArn

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

Value

A list with the following syntax:

list(
  LicenseAssetGroup = list(
    Name = "string",
    Description = "string",
    LicenseAssetGroupConfigurations = list(
      list(
        UsageDimension = "string"
      )
    ),
    AssociatedLicenseAssetRulesetARNs = list(
      "string"
    ),
    Properties = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    LicenseAssetGroupArn = "string",
    Status = "ACTIVE"|"DISABLED"|"DELETED",
    StatusMessage = "string",
    LatestUsageAnalysisTime = as.POSIXct(
      "2015-01-01"
    ),
    LatestResourceDiscoveryTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$get_license_asset_group(
  LicenseAssetGroupArn = "string"
)