Describe Listener Certificates
elbv2_describe_listener_certificates | R Documentation |
Describes the default certificate and the certificate list for the specified HTTPS or TLS listener¶
Description¶
Describes the default certificate and the certificate list for the specified HTTPS or TLS listener.
If the default certificate is also in the certificate list, it appears
twice in the results (once with IsDefault
set to true and once with
IsDefault
set to false).
For more information, see SSL certificates in the Application Load Balancers Guide or Server certificates in the Network Load Balancers Guide.
Usage¶
Arguments¶
ListenerArn
[required] The Amazon Resource Names (ARN) of the listener.
Marker
The marker for the next set of results. (You received this marker from a previous call.)
PageSize
The maximum number of results to return with this call.
Value¶
A list with the following syntax:
list(
Certificates = list(
list(
CertificateArn = "string",
IsDefault = TRUE|FALSE
)
),
NextMarker = "string"
)