Retrieves a list of certificate ARNs and domain names
Source:R/acm_operations.R
acm_list_certificates.RdRetrieves a list of certificate ARNs and domain names. You can request that only certificates that match a specific status be listed. You can also filter by specific attributes of the certificate. Default filtering returns only RSA_2048 certificates. For more information, see Filters.
See https://www.paws-r-sdk.com/docs/acm_list_certificates/ for full documentation.
Usage
acm_list_certificates(
CertificateStatuses = NULL,
Includes = NULL,
NextToken = NULL,
MaxItems = NULL,
SortBy = NULL,
SortOrder = NULL
)Arguments
- CertificateStatuses
Filter the certificate list by status value.
- Includes
Filter the certificate list. For more information, see the Filters structure.
- NextToken
Use this parameter only when paginating results and only in a subsequent request after you receive a response with truncated results. Set it to the value of
NextTokenfrom the response you just received.- MaxItems
Use this parameter when paginating results to specify the maximum number of items to return in the response. If additional items exist beyond the number you specify, the
NextTokenelement is sent in the response. Use thisNextTokenvalue in a subsequent request to retrieve additional items.- SortBy
Specifies the field to sort results by. If you specify
SortBy, you must also specifySortOrder.- SortOrder
Specifies the order of sorted results. If you specify
SortOrder, you must also specifySortBy.