Retrieves information about the specified server certificate stored in IAM.
For more information about working with server certificates, see Working
with server certificates in the IAM User Guide. This
topic includes a list of Amazon Web Services services that can use the server certificates that you
manage with IAM.
example
Use a bare-bones client and the command you need to make an API call.
Retrieves information about the specified server certificate stored in IAM.
For more information about working with server certificates, see Working with server certificates in the IAM User Guide. This topic includes a list of Amazon Web Services services that can use the server certificates that you manage with IAM.
Use a bare-bones client and the command you need to make an API call.
import { IAMClient, GetServerCertificateCommand } from "@aws-sdk/client-iam"; // ES Modules import // const { IAMClient, GetServerCertificateCommand } = require("@aws-sdk/client-iam"); // CommonJS import const client = new IAMClient(config); const command = new GetServerCertificateCommand(input); const response = await client.send(command);
GetServerCertificateCommandInput for command's
input
shape.GetServerCertificateCommandOutput for command's
response
shape.config for IAMClient's
config
shape.