Get Resource Metadata
pi_get_resource_metadata | R Documentation |
Retrieve the metadata for different features¶
Description¶
Retrieve the metadata for different features. For example, the metadata might indicate that a feature is turned on or off on a specific DB instance.
Usage¶
pi_get_resource_metadata(ServiceType, Identifier)
Arguments¶
ServiceType |
[required] The Amazon Web Services service for which Performance Insights returns metrics. |
Identifier |
[required] An immutable identifier for a data source that is
unique for an Amazon Web Services Region. Performance Insights gathers
metrics from this data source. To use a DB instance as a data source,
specify its |
Value¶
A list with the following syntax:
list(
Identifier = "string",
Features = list(
list(
Status = "ENABLED"|"DISABLED"|"UNSUPPORTED"|"ENABLED_PENDING_REBOOT"|"DISABLED_PENDING_REBOOT"|"UNKNOWN"
)
)
)
Request syntax¶
svc$get_resource_metadata(
ServiceType = "RDS"|"DOCDB",
Identifier = "string"
)