list-certificates
command:
request-certificate
command, providing the necessary parameters like domain name, validation method, etc.:
list-certificates
command.update-certificate-options
command:
list-certificates
command.delete-certificate
command, providing the ARN of each certificate:
boto3.client('acm')
method to create a client object for AWS Certificate Manager.list_certificates()
method to retrieve a list of all certificates.NotAfter
attribute.renew_certificate()
method to renew the expiring certificate.list_certificates()
method to retrieve a list of all certificates.delete_certificate()
method to delete the unused certificate.import_certificate()
method to import a certificate from an external source.