Update License Configuration
licensemanager_update_license_configuration | R Documentation |
Modifies the attributes of an existing license configuration¶
Description¶
Modifies the attributes of an existing license configuration.
Usage¶
licensemanager_update_license_configuration(LicenseConfigurationArn,
LicenseConfigurationStatus, LicenseRules, LicenseCount,
LicenseCountHardLimit, Name, Description, ProductInformationList,
DisassociateWhenNotFound)
Arguments¶
LicenseConfigurationArn
[required] Amazon Resource Name (ARN) of the license configuration.
LicenseConfigurationStatus
New status of the license configuration.
LicenseRules
New license rule. The only rule that you can add after you create a license configuration is licenseAffinityToHost.
LicenseCount
New number of licenses managed by the license configuration.
LicenseCountHardLimit
New hard limit of the number of available licenses.
Name
New name of the license configuration.
Description
New description of the license configuration.
ProductInformationList
New product information.
DisassociateWhenNotFound
When true, disassociates a resource when software is uninstalled.
Value¶
An empty list.
Request syntax¶
svc$update_license_configuration(
LicenseConfigurationArn = "string",
LicenseConfigurationStatus = "AVAILABLE"|"DISABLED",
LicenseRules = list(
"string"
),
LicenseCount = 123,
LicenseCountHardLimit = TRUE|FALSE,
Name = "string",
Description = "string",
ProductInformationList = list(
list(
ResourceType = "string",
ProductInformationFilterList = list(
list(
ProductInformationFilterName = "string",
ProductInformationFilterValue = list(
"string"
),
ProductInformationFilterComparator = "string"
)
)
)
),
DisassociateWhenNotFound = TRUE|FALSE
)