List Applications
opensearchservice_list_applications | R Documentation |
List all OpenSearch Applications under your account¶
Description¶
List all OpenSearch Applications under your account.
Usage¶
Arguments¶
nextToken
statuses
OpenSearch Application Status can be used as filters for the listing request. Possible values are
CREATING
,UPDATING
,DELETING
,FAILED
,ACTIVE
, andDELETED
.maxResults
Value¶
A list with the following syntax:
list(
ApplicationSummaries = list(
list(
id = "string",
arn = "string",
name = "string",
endpoint = "string",
status = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_applications(
nextToken = "string",
statuses = list(
"CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"FAILED"
),
maxResults = 123
)