Skip to main content

load_balancer_tls_policies

Creates, updates, deletes, gets or lists a load_balancer_tls_policies resource.

Overview

Nameload_balancer_tls_policies
TypeResource
Idaws.lightsail.load_balancer_tls_policies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_page_tokenstringThe token to advance to the next page of results from your request. A next page token is not returned if there are no more results to display. To get the next page of results, perform another GetLoadBalancerTlsPolicies request and specify the next page token using the pageToken parameter.
tls_policiesarrayAn array of objects that describe the TLS security policies that are available.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_load_balancer_tls_policiesselectregionReturns 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
next_page_token,
tls_policies
FROM aws.lightsail.load_balancer_tls_policies
WHERE region = '{{ region }}' -- required
;