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¶
Arguments¶
maxResultsThe maximum number of results to be included in the next page.
nextTokenThe 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"
)