Delete Attribute Group
| appregistry_delete_attribute_group | R Documentation |
Deletes an attribute group, specified either by its attribute group ID, name, or ARN¶
Description¶
Deletes an attribute group, specified either by its attribute group ID, name, or ARN.
Usage¶
appregistry_delete_attribute_group(attributeGroup)
Arguments¶
attributeGroup |
[required] The name, ID, or ARN of the attribute group that holds the attributes to describe the application. |
Value¶
A list with the following syntax:
list(
attributeGroup = list(
id = "string",
arn = "string",
name = "string",
description = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdateTime = as.POSIXct(
"2015-01-01"
),
createdBy = "string"
)
)
Request syntax¶
svc$delete_attribute_group(
attributeGroup = "string"
)