Skip to content

Get License Conversion Task

licensemanager_get_license_conversion_task R Documentation

Gets information about the specified license type conversion task

Description

Gets information about the specified license type conversion task.

Usage

licensemanager_get_license_conversion_task(LicenseConversionTaskId)

Arguments

LicenseConversionTaskId

[required] ID of the license type conversion task to retrieve information on.

Value

A list with the following syntax:

list(
  LicenseConversionTaskId = "string",
  ResourceArn = "string",
  SourceLicenseContext = list(
    UsageOperation = "string"
  ),
  DestinationLicenseContext = list(
    UsageOperation = "string"
  ),
  StatusMessage = "string",
  Status = "IN_PROGRESS"|"SUCCEEDED"|"FAILED",
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  LicenseConversionTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_license_conversion_task(
  LicenseConversionTaskId = "string"
)