Skip to main content

ssl_policies

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

Overview

Namessl_policies
TypeResource
Idaws.elbv2.ssl_policies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ciphersstringThe ciphers.
namestringThe name of the policy.
ssl_protocolsstringThe protocols.
supported_load_balancer_typesstringThe supported load balancers.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_ssl_policiesselectregionNames, Marker, PageSize, LoadBalancerTypeDescribes the specified policies or all policies used for SSL negotiation. For more information, see Security policies in the Application Load Balancers Guide and Security policies in the Network Load Balancers 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)
LoadBalancerTypestringThe type of load balancer. The default lists the SSL policies for all load balancers.
MarkerstringThe marker for the next set of results. (You received this marker from a previous call.)
NamesarrayThe names of the policies.
PageSizeintegerThe maximum number of results to return with this call.

SELECT examples

Describes the specified policies or all policies used for SSL negotiation. For more information, see Security policies in the Application Load Balancers Guide and Security policies in the Network Load Balancers Guide.

SELECT
ciphers,
name,
ssl_protocols,
supported_load_balancer_types
FROM aws.elbv2.ssl_policies
WHERE region = '{{ region }}' -- required
AND Names = '{{ Names }}'
AND Marker = '{{ Marker }}'
AND PageSize = '{{ PageSize }}'
AND LoadBalancerType = '{{ LoadBalancerType }}'
;