Create License Asset Group
| licensemanager_create_license_asset_group | R Documentation |
Creates a license asset group¶
Description¶
Creates a license asset group.
Usage¶
licensemanager_create_license_asset_group(Name, Description,
LicenseAssetGroupConfigurations, AssociatedLicenseAssetRulesetARNs,
Properties, Tags, ClientToken)
Arguments¶
Name |
[required] License asset group name. |
Description |
License asset group description. |
LicenseAssetGroupConfigurations |
[required] License asset group configurations. |
AssociatedLicenseAssetRulesetARNs |
[required] ARNs of associated license asset rulesets. |
Properties |
License asset group properties. |
Tags |
Tags to add to the license asset group. |
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$create_license_asset_group(
Name = "string",
Description = "string",
LicenseAssetGroupConfigurations = list(
list(
UsageDimension = "string"
)
),
AssociatedLicenseAssetRulesetARNs = list(
"string"
),
Properties = list(
list(
Key = "string",
Value = "string"
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
ClientToken = "string"
)