List Functions By Code Signing Config
lambda_list_functions_by_code_signing_config | R Documentation |
List the functions that use the specified code signing configuration¶
Description¶
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.
Usage¶
lambda_list_functions_by_code_signing_config(CodeSigningConfigArn,
Marker, MaxItems)
Arguments¶
CodeSigningConfigArn |
[required] The The Amazon Resource Name (ARN) of the code signing configuration. |
Marker |
Specify the pagination token that's returned by a previous request to retrieve the next page of results. |
MaxItems |
Maximum number of items to return. |
Value¶
A list with the following syntax:
list(
NextMarker = "string",
FunctionArns = list(
"string"
)
)
Request syntax¶
svc$list_functions_by_code_signing_config(
CodeSigningConfigArn = "string",
Marker = "string",
MaxItems = 123
)