Get Load Balancer Tls Policies
lightsail_get_load_balancer_tls_policies | R Documentation |
Returns a list of TLS security policies that you can apply to Lightsail load balancers¶
Description¶
Returns a list of TLS security policies that you can apply to Lightsail load balancers.
For more information about load balancer TLS security policies, see Configuring TLS security policies on your Amazon Lightsail load balancers in the Amazon Lightsail Developer Guide.
Usage¶
lightsail_get_load_balancer_tls_policies(pageToken)
Arguments¶
pageToken |
The token to advance to the next page of results from your request. To get a page token, perform an initial
|
Value¶
A list with the following syntax:
list(
tlsPolicies = list(
list(
name = "string",
isDefault = TRUE|FALSE,
description = "string",
protocols = list(
"string"
),
ciphers = list(
"string"
)
)
),
nextPageToken = "string"
)
Request syntax¶
svc$get_load_balancer_tls_policies(
pageToken = "string"
)