Skip to main content

functions_by_code_signing_configs

Creates, updates, deletes, gets or lists a functions_by_code_signing_configs resource.

Overview

Namefunctions_by_code_signing_configs
TypeResource
Idaws.lambda.functions_by_code_signing_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
function_arnstringThe function ARNs.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_functions_by_code_signing_configselectcode_signing_config_arn, regionMarker, MaxItemsList 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
code_signing_config_arnstringThe The Amazon Resource Name (ARN) of the code signing configuration.
regionstringAWS region (default: us-east-1)
MarkerstringSpecify the pagination token that's returned by a previous request to retrieve the next page of results.
MaxItemsintegerMaximum number of items to return.

SELECT examples

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.

SELECT
function_arn
FROM aws.lambda.functions_by_code_signing_configs
WHERE code_signing_config_arn = '{{ code_signing_config_arn }}' -- required
AND region = '{{ region }}' -- required
AND Marker = '{{ Marker }}'
AND MaxItems = '{{ MaxItems }}'
;