Modifying a Server Certificate
You can modify the name and/or the path of a specified server certificate you uploaded in EIM.
This feature is not available from Cockpit. This documentation only describes the procedure using AWS CLI.
To modify the name and/or the path of a server certificate, use the update-server-certificate command following this syntax:
$ aws iam update-server-certificate \
--profile YOUR_PROFILE \
--server-certificate-name my-server-certificate \
--new-server-certificate-name load-balancer-certificate \
--new-path division/subdivision/team \
--endpoint https://eim.eu-west-2.outscale.com
This command contains the following attributes that you need to specify:
-
(optional)
profile
: The named profile you want to use, created when configuring AWS CLI. For more information, see Installing and Configuring AWS CLI. -
server-certificate-name
: The name of the server certificate you want to modify. -
(optional)
new-server-certificate-name
: The new name for the server certificate. -
(optional)
new-path
: The new path for the server certificate. -
endpoint
: The endpoint corresponding to the Region you want to send the request to.
The server certificate is modified with the specified information.
Related Pages
Corresponding API Method
AWS™ and Amazon Web Services™ are trademarks of Amazon Technologies, Inc or its affiliates in the United States and/or other countries.