List Trust Store Certificates
workspacesweb_list_trust_store_certificates | R Documentation |
Retrieves a list of trust store certificates¶
Description¶
Retrieves a list of trust store certificates.
Usage¶
workspacesweb_list_trust_store_certificates(maxResults, nextToken,
trustStoreArn)
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. |
trustStoreArn |
[required] The ARN of the trust store |
Value¶
A list with the following syntax:
list(
certificateList = list(
list(
issuer = "string",
notValidAfter = as.POSIXct(
"2015-01-01"
),
notValidBefore = as.POSIXct(
"2015-01-01"
),
subject = "string",
thumbprint = "string"
)
),
nextToken = "string",
trustStoreArn = "string"
)
Request syntax¶
svc$list_trust_store_certificates(
maxResults = 123,
nextToken = "string",
trustStoreArn = "string"
)