paws.networking (version 0.1.6)

elbv2_add_listener_certificates: Adds the specified SSL server certificate to the certificate list for the specified HTTPS or TLS listener

Description

Adds the specified SSL server certificate to the certificate list for the specified HTTPS or TLS listener.

Usage

elbv2_add_listener_certificates(ListenerArn, Certificates)

Arguments

ListenerArn

[required] The Amazon Resource Name (ARN) of the listener.

Certificates

[required] The certificate to add. You can specify one certificate per call. Set CertificateArn to the certificate ARN but do not set IsDefault.

Request syntax

svc$add_listener_certificates(
  ListenerArn = "string",
  Certificates = list(
    list(
      CertificateArn = "string",
      IsDefault = TRUE|FALSE
    )
  )
)

Details

If the certificate in already in the certificate list, the call is successful but the certificate is not added again.

To get the certificate list for a listener, use DescribeListenerCertificates. To remove certificates from the certificate list for a listener, use RemoveListenerCertificates. To replace the default certificate for a listener, use ModifyListener.

For more information, see SSL Certificates in the Application Load Balancers Guide.