Lambda / Client / list_functions_by_code_signing_config

list_functions_by_code_signing_config#

Lambda.Client.list_functions_by_code_signing_config(**kwargs)#

List the functions that use the specified code signing configuration. You can use this method prior to deleting a code signing configuration, to verify that no functions are using it.

See also: AWS API Documentation

Request Syntax

response = client.list_functions_by_code_signing_config(
    CodeSigningConfigArn='string',
    Marker='string',
    MaxItems=123
)
Parameters:
  • CodeSigningConfigArn (string) –

    [REQUIRED]

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

  • Marker (string) – Specify the pagination token that’s returned by a previous request to retrieve the next page of results.

  • MaxItems (integer) – Maximum number of items to return.

Return type:

dict

Returns:

Response Syntax

{
    'NextMarker': 'string',
    'FunctionArns': [
        'string',
    ]
}

Response Structure

  • (dict) –

    • NextMarker (string) –

      The pagination token that’s included if more results are available.

    • FunctionArns (list) –

      The function ARNs.

      • (string) –

Exceptions

  • Lambda.Client.exceptions.ServiceException

  • Lambda.Client.exceptions.InvalidParameterValueException

  • Lambda.Client.exceptions.ResourceNotFoundException