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'
}
)
The names of the policies.
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
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.
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.
NextToken (string) --
A token to resume pagination.