ElasticLoadBalancingv2 / Paginator / DescribeSSLPolicies
DescribeSSLPolicies#
- class ElasticLoadBalancingv2.Paginator.DescribeSSLPolicies#
- paginator = client.get_paginator('describe_ssl_policies') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - ElasticLoadBalancingv2.Client.describe_ssl_policies().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( Names=[ 'string', ], LoadBalancerType='application'|'network'|'gateway', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- Names (list) – - The names of the policies. - (string) – 
 
- LoadBalancerType (string) – The type of load balancer. The default lists the SSL policies for all load balancers. 
- PaginationConfig (dict) – - A dictionary that provides parameters to control pagination. - MaxItems (integer) – - The total number of items to return. If the total number of items available is more than the value specified in max-items then a - NextTokenwill be provided in the output that you can use to resume pagination.
- PageSize (integer) – - The size of each page. 
- StartingToken (string) – - A token to specify where to start paginating. This is the - NextTokenfrom a previous response.
 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'SslPolicies': [ { 'SslProtocols': [ 'string', ], 'Ciphers': [ { 'Name': 'string', 'Priority': 123 }, ], 'Name': 'string', 'SupportedLoadBalancerTypes': [ 'string', ] }, ], 'NextToken': 'string' } - Response Structure- (dict) – - SslPolicies (list) – - Information about the security policies. - (dict) – - Information about a policy used for SSL negotiation. - SslProtocols (list) – - The protocols. - (string) – 
 
- Ciphers (list) – - The ciphers. - (dict) – - Information about a cipher used in a policy. - Name (string) – - The name of the cipher. 
- Priority (integer) – - The priority of the cipher. 
 
 
- Name (string) – - The name of the policy. 
- SupportedLoadBalancerTypes (list) – - The supported load balancers. - (string) – 
 
 
 
- NextToken (string) – - A token to resume pagination.