List Trust Stores
workspacesweb_list_trust_stores | R Documentation |
Retrieves a list of trust stores¶
Description¶
Retrieves a list of trust stores.
Usage¶
workspacesweb_list_trust_stores(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to be included in the next page. |
nextToken |
The pagination token used to retrieve the next page of results for this operation. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
trustStores = list(
list(
trustStoreArn = "string"
)
)
)
Request syntax¶
svc$list_trust_stores(
maxResults = 123,
nextToken = "string"
)