functions_by_code_signing_configs
Creates, updates, deletes, gets or lists a functions_by_code_signing_configs resource.
Overview
| Name | functions_by_code_signing_configs |
| Type | Resource |
| Id | aws.lambda.functions_by_code_signing_configs |
Fields
The following fields are returned by SELECT queries:
- list_functions_by_code_signing_config
| Name | Datatype | Description |
|---|---|---|
function_arn | string | The function ARNs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_functions_by_code_signing_config | select | code_signing_config_arn, region | Marker, MaxItems | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
code_signing_config_arn | string | The The Amazon Resource Name (ARN) of the code signing configuration. |
region | string | AWS region (default: us-east-1) |
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. |
SELECT examples
- list_functions_by_code_signing_config
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 }}'
;