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.
LicenseConfigurationStatusNew status of the license configuration.
LicenseRulesNew license rule. The only rule that you can add after you create a license configuration is licenseAffinityToHost.
LicenseCountNew number of licenses managed by the license configuration.
LicenseCountHardLimitNew hard limit of the number of available licenses.
NameNew name of the license configuration.
DescriptionNew description of the license configuration.
ProductInformationListNew product information.
DisassociateWhenNotFoundWhen 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
)