Update License Asset Group
| licensemanager_update_license_asset_group | R Documentation |
Updates a license asset group¶
Description¶
Updates a license asset group.
Usage¶
licensemanager_update_license_asset_group(Name, Description,
LicenseAssetGroupConfigurations, AssociatedLicenseAssetRulesetARNs,
Properties, LicenseAssetGroupArn, Status, ClientToken)
Arguments¶
Name |
License asset group name. |
Description |
License asset group description. |
LicenseAssetGroupConfigurations |
License asset group configurations. |
AssociatedLicenseAssetRulesetARNs |
[required] ARNs of associated license asset rulesets. |
Properties |
License asset group properties. |
LicenseAssetGroupArn |
[required] Amazon Resource Name (ARN) of the license asset group. |
Status |
License asset group status. The possible values are
|
ClientToken |
[required] Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. |
Value¶
A list with the following syntax:
list(
LicenseAssetGroupArn = "string",
Status = "string"
)
Request syntax¶
svc$update_license_asset_group(
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",
ClientToken = "string"
)