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¶
Arguments¶
pageToken
The token to advance to the next page of results from your request.
To get a page token, perform an initial
get_load_balancer_tls_policies
request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.
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"
)