load_balancer_tls_policies
Creates, updates, deletes, gets or lists a load_balancer_tls_policies resource.
Overview
| Name | load_balancer_tls_policies |
| Type | Resource |
| Id | aws.lightsail.load_balancer_tls_policies |
Fields
The following fields are returned by SELECT queries:
- get_load_balancer_tls_policies
| Name | Datatype | Description |
|---|---|---|
next_page_token | string | The 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_policies | array | An array of objects that describe the TLS security policies that are available. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_load_balancer_tls_policies | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_load_balancer_tls_policies
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
;