Lambda 関数の作成 - AWS SDK for Ruby

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

Lambda 関数の作成

この例では、以下の値を使用して us-west-2 リージョンで Lambda 関数 my-notification-function を作成します。

  • ロールの ARN: my-resource-arn。ほとんどの場合、このロールのポリシーに AWSLambdaExecute 管理ポリシーのみをアタッチする必要があります。

  • 関数のエントリポイント: my-package.my-class

  • ランタイム: java8

  • Zip ファイル: my-zip-file.zip

  • バケット: my-notification-bucket

  • キー: my-zip-file

# Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # This file is licensed under the Apache License, Version 2.0 (the "License"). # You may not use this file except in compliance with the License. A copy of the # License is located at # # http://aws.amazon.com/apache2.0/ # # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS # OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. require 'aws-sdk-lambda' # v2: require 'aws-sdk' client = Aws::Lambda::Client.new(region: 'us-west-2') args = {} args[:role] = 'my-resource-arn' args[:function_name] = 'my-notification-function' args[:handler] = 'my-package.my-class' # Also accepts nodejs, nodejs4.3, and python2.7 args[:runtime] = 'java8' code = {} code[:zip_file] = 'my-zip-file.zip' code[:s3_bucket] = 'my-notification-bucket' code[:s3_key] = 'my-zip-file' args[:code] = code client.create_function(args)