Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
|
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
# snippet-start:[ruby.lambda.Hello]
|
||
|
|
|
||
|
|
require 'aws-sdk-lambda'
|
||
|
|
|
||
|
|
# Creates an AWS Lambda client using the default credentials and configuration
|
||
|
|
def lambda_client
|
||
|
|
Aws::Lambda::Client.new
|
||
|
|
end
|
||
|
|
|
||
|
|
# Lists the Lambda functions in your AWS account, paginating the results if necessary
|
||
|
|
def list_lambda_functions
|
||
|
|
lambda = lambda_client
|
||
|
|
|
||
|
|
# Use a pagination iterator to list all functions
|
||
|
|
functions = []
|
||
|
|
lambda.list_functions.each_page do |page|
|
||
|
|
functions.concat(page.functions)
|
||
|
|
end
|
||
|
|
|
||
|
|
# Print the name and ARN of each function
|
||
|
|
functions.each do |function|
|
||
|
|
puts "Function name: #{function.function_name}"
|
||
|
|
puts "Function ARN: #{function.function_arn}"
|
||
|
|
puts
|
||
|
|
end
|
||
|
|
|
||
|
|
puts "Total functions: #{functions.count}"
|
||
|
|
end
|
||
|
|
|
||
|
|
list_lambda_functions if __FILE__ == $PROGRAM_NAME
|
||
|
|
|
||
|
|
# snippet-end:[ruby.lambda.Hello]
|