Managing Server Certificates in IAM
Uploading a Server Certificate (AWS API)
In order to upload a server certificate to IAM, you have to offer the certificate and its matching private key. However, the following criteria must be met before uploading the certificate:
- The certificate must be valid at the time of upload.
- The private key must be unencrypted.
- The certificate, private key, and certificate chain must all be PEM-encoded.
Retrieving a Server Certificate (AWS API)
If you want to retrieve a certificate via IAM API, send GetServerCertificate request, and if you want to use the AWS Tools for Windows PowerShell to retrieve a certificate, use Get-IAMServerCertificate.
Listing Server Certificates (AWS API)
If you want to list your uploaded certificates via IAM API, send a ListServerCertificates request, and if you want to use the AWS Tools for Windows PowerShell to list your uploaded server certificates, use Get-IAMServerCertificates.
Tagging & Untagging Server Certificates (AWS API)
If you want to tag an existing server certificate via IAM API, send a TagServerCertificate request, while send a UntagServerCertificate request to untag it.
Renaming a Server Certificate or Updating its Path (AWS API)
If you want to rename or update the path of a server certificate via IAM API, send an UpdateServerCertificate request, and if you want to use the AWS Tools for Windows PowerShell to do the same, use Update-IAMServerCertificate.
Deleting a Server Certificate (AWS API)
In order to delete a server certificate via IAM API, send a DeleteServerCertificate request, and if you want to use the AWS Tools for Windows PowerShell to do the same, use Remove-IAMServerCertificate.
.
Comments
Post a Comment