ElasticLoadBalancingv2 / Paginator / DescribeTrustStoreRevocations

DescribeTrustStoreRevocations

class ElasticLoadBalancingv2.Paginator.DescribeTrustStoreRevocations
paginator = client.get_paginator('describe_trust_store_revocations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticLoadBalancingv2.Client.describe_trust_store_revocations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    TrustStoreArn='string',
    RevocationIds=[
        123,
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • TrustStoreArn (string) –

    [REQUIRED]

    The Amazon Resource Name (ARN) of the trust store.

  • RevocationIds (list) –

    The revocation IDs of the revocation files you want to describe.

    • (integer) –

  • 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 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.

Return type:

dict

Returns:

Response Syntax

{
    'TrustStoreRevocations': [
        {
            'TrustStoreArn': 'string',
            'RevocationId': 123,
            'RevocationType': 'CRL',
            'NumberOfRevokedEntries': 123
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • TrustStoreRevocations (list) –

      Information about the revocation file in the trust store.

      • (dict) –

        Information about the revocations used by a trust store.

        • TrustStoreArn (string) –

          The Amazon Resource Name (ARN) of the trust store.

        • RevocationId (integer) –

          The revocation ID of a revocation file in use.

        • RevocationType (string) –

          The type of revocation file.

        • NumberOfRevokedEntries (integer) –

          The number of revoked certificates.

    • NextToken (string) –

      A token to resume pagination.