Skip to content

List Assets For License Asset Group

licensemanager_list_assets_for_license_asset_group R Documentation

Lists assets for a license asset group

Description

Lists assets for a license asset group.

Usage

licensemanager_list_assets_for_license_asset_group(LicenseAssetGroupArn,
  AssetType, MaxResults, NextToken)

Arguments

LicenseAssetGroupArn

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

AssetType

[required] Asset type. The possible values are Instance | License | LicenseConfiguration.

MaxResults

Maximum number of results to return in a single call.

NextToken

Token for the next set of results.

Value

A list with the following syntax:

list(
  Assets = list(
    list(
      AssetArn = "string",
      LatestAssetDiscoveryTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_assets_for_license_asset_group(
  LicenseAssetGroupArn = "string",
  AssetType = "string",
  MaxResults = 123,
  NextToken = "string"
)