Describe Domain Auto Tunes
| opensearchservice_describe_domain_auto_tunes | R Documentation |
Returns the list of optimizations that Auto-Tune has made to an Amazon OpenSearch Service domain¶
Description¶
Returns the list of optimizations that Auto-Tune has made to an Amazon OpenSearch Service domain. For more information, see Auto-Tune for Amazon OpenSearch Service.
Usage¶
Arguments¶
DomainName[required] Name of the domain that you want Auto-Tune details about.
MaxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results.NextTokenIf your initial
describe_domain_auto_tunesoperation returns anextToken, you can include the returnednextTokenin subsequentdescribe_domain_auto_tunesoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
AutoTunes = list(
list(
AutoTuneType = "SCHEDULED_ACTION",
AutoTuneDetails = list(
ScheduledAutoTuneDetails = list(
Date = as.POSIXct(
"2015-01-01"
),
ActionType = "JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING",
Action = "string",
Severity = "LOW"|"MEDIUM"|"HIGH"
)
)
)
),
NextToken = "string"
)