There are more AWS SDK examples available in the AWS Doc SDK Examples
Use SetLoadBalancerListenerSslCertificate
with a CLI
The following code examples show how to use SetLoadBalancerListenerSslCertificate
.
- CLI
-
- AWS CLI
-
To update the SSL certificate for an HTTPS load balancer
This example replaces the existing SSL certificate for the specified HTTPS load balancer.
Command:
aws elb set-load-balancer-listener-ssl-certificate --load-balancer-name
my-load-balancer
--load-balancer-port443
--ssl-certificate-idarn:aws:iam::123456789012:server-certificate/new-server-cert
-
For API details, see SetLoadBalancerListenerSslCertificate
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example replaces the certificate that terminates the SSL connections for the specified listener.
Set-ELBLoadBalancerListenerSSLCertificate -LoadBalancerName my-load-balancer ` >> -LoadBalancerPort 443 ` >> -SSLCertificateId "arn:aws:iam::123456789012:server-certificate/new-server-cert"
-
For API details, see SetLoadBalancerListenerSslCertificate in AWS Tools for PowerShell Cmdlet Reference.
-