Get Resource Set
| fms_get_resource_set | R Documentation | 
Gets information about a specific resource set¶
Description¶
Gets information about a specific resource set.
Usage¶
fms_get_resource_set(Identifier)
Arguments¶
| Identifier | [required] A unique identifier for the resource set, used in a request to refer to the resource set. | 
Value¶
A list with the following syntax:
list(
  ResourceSet = list(
    Id = "string",
    Name = "string",
    Description = "string",
    UpdateToken = "string",
    ResourceTypeList = list(
      "string"
    ),
    LastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    ResourceSetStatus = "ACTIVE"|"OUT_OF_ADMIN_SCOPE"
  ),
  ResourceSetArn = "string"
)
Request syntax¶
svc$get_resource_set(
  Identifier = "string"
)