Class: AWS::IAM::ServerCertificate
- Inherits:
-
Resource
- Object
- Resource
- Resource
- AWS::IAM::ServerCertificate
- Defined in:
- lib/aws/iam/server_certificate.rb
Overview
Respresents a server certificate.
certificate = iam.server_certificates["MyCert"]
You can use this class to get information about a certificate and to delete it.
Instance Method Summary collapse
-
#delete ⇒ nil
Deletes the specified server certificate.
Instance Method Details
#delete ⇒ nil
If you are using a server certificate with Elastic Load Balancing, deleting the certificate could have implications for your application. If Elastic Load Balancing doesn’t detect the deletion of bound certificates, it may continue to use the certificates. This could cause Elastic Load Balancing to stop accepting traffic. We recommend that you remove the reference to the certificate from Elastic Load Balancing before using this command to delete the certificate. For more information, go to DeleteLoadBalancerListeners in the _Elastic Load Balancing API Reference_.
Deletes the specified server certificate.
117 118 119 120 |
# File 'lib/aws/iam/server_certificate.rb', line 117 def delete client.delete_server_certificate() nil end |