:doc:`ElasticLoadBalancingv2 <../../elbv2>` / Paginator / DescribeSSLPolicies

*******************
DescribeSSLPolicies
*******************



.. py:class:: ElasticLoadBalancingv2.Paginator.DescribeSSLPolicies

  ::

    
    paginator = client.get_paginator('describe_ssl_policies')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`ElasticLoadBalancingv2.Client.describe_ssl_policies`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeSSLPolicies>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Names=[
              'string',
          ],
          LoadBalancerType='application'|'network'|'gateway',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Names: list
    :param Names: 

      The names of the policies.

      

    
      - *(string) --* 

      
  
    :type LoadBalancerType: string
    :param LoadBalancerType: 

      The type of load balancer. The default lists the SSL policies for all load balancers.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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 ``NextToken`` will 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 ``NextToken`` from a previous response.

        

      
    
    
    :rtype: 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.

          
    