ElasticLoadBalancingv2 / Client / describe_trust_stores

describe_trust_stores#

ElasticLoadBalancingv2.Client.describe_trust_stores(**kwargs)#

Describes all trust stores for a given account by trust store arn’s or name.

See also: AWS API Documentation

Request Syntax

response = client.describe_trust_stores(
    TrustStoreArns=[
        'string',
    ],
    Names=[
        'string',
    ],
    Marker='string',
    PageSize=123
)
Parameters:
  • TrustStoreArns (list) –

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

    • (string) –

  • Names (list) –

    The names of the trust stores.

    • (string) –

  • Marker (string) – The marker for the next set of results. (You received this marker from a previous call.)

  • PageSize (integer) – The maximum number of results to return with this call.

Return type:

dict

Returns:

Response Syntax

{
    'TrustStores': [
        {
            'Name': 'string',
            'TrustStoreArn': 'string',
            'Status': 'ACTIVE'|'CREATING',
            'NumberOfCaCertificates': 123,
            'TotalRevokedEntries': 123
        },
    ],
    'NextMarker': 'string'
}

Response Structure

  • (dict) –

    • TrustStores (list) –

      Information about the trust stores.

      • (dict) –

        Information about a trust store.

        • Name (string) –

          The name of the trust store.

        • TrustStoreArn (string) –

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

        • Status (string) –

          The current status of the trust store.

        • NumberOfCaCertificates (integer) –

          The number of ca certificates in the trust store.

        • TotalRevokedEntries (integer) –

          The number of revoked certificates in the trust store.

    • NextMarker (string) –

      If there are additional results, this is the marker for the next set of results. Otherwise, this is null.

Exceptions

  • ElasticLoadBalancingv2.Client.exceptions.TrustStoreNotFoundException