ListCodeSigningConfigs

class Lambda.Paginator.ListCodeSigningConfigs
paginator = client.get_paginator('list_code_signing_configs')
paginate(**kwargs)

Creates an iterator that will paginate through responses from Lambda.Client.list_code_signing_configs().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
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
{
    'CodeSigningConfigs': [
        {
            'CodeSigningConfigId': 'string',
            'CodeSigningConfigArn': 'string',
            'Description': 'string',
            'AllowedPublishers': {
                'SigningProfileVersionArns': [
                    'string',
                ]
            },
            'CodeSigningPolicies': {
                'UntrustedArtifactOnDeployment': 'Warn'|'Enforce'
            },
            'LastModified': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • CodeSigningConfigs (list) --

      The code signing configurations

      • (dict) --

        Details about a Code signing configuration.

        • CodeSigningConfigId (string) --

          Unique identifer for the Code signing configuration.

        • CodeSigningConfigArn (string) --

          The Amazon Resource Name (ARN) of the Code signing configuration.

        • Description (string) --

          Code signing configuration description.

        • AllowedPublishers (dict) --

          List of allowed publishers.

          • SigningProfileVersionArns (list) --

            The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile defines a trusted user who can sign a code package.

            • (string) --
        • CodeSigningPolicies (dict) --

          The code signing policy controls the validation failure action for signature mismatch or expiry.

          • UntrustedArtifactOnDeployment (string) --

            Code signing configuration policy for deployment validation failure. If you set the policy to Enforce , Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn , Lambda allows the deployment and creates a CloudWatch log.

            Default value: Warn

        • LastModified (string) --

          The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    • NextToken (string) --

      A token to resume pagination.