Retrieves 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.
example
Use a bare-bones client and the command you need to make an API call.
Retrieves 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.Use a bare-bones client and the command you need to make an API call.
import { ACMClient, ListCertificatesCommand } from "@aws-sdk/client-acm"; // ES Modules import // const { ACMClient, ListCertificatesCommand } = require("@aws-sdk/client-acm"); // CommonJS import const client = new ACMClient(config); const command = new ListCertificatesCommand(input); const response = await client.send(command);
ListCertificatesCommandInput for command's
input
shape.ListCertificatesCommandOutput for command's
response
shape.config for ACMClient's
config
shape.