並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 16 件 / 16件

新着順 人気順

aws cli invoke lambda locallyの検索結果1 - 16 件 / 16件

  • GitHub - modelcontextprotocol/servers: Model Context Protocol Servers

    Official integrations are maintained by companies building production ready MCP servers for their platforms. 21st.dev Magic - Create crafted UI components inspired by the best 21st.dev design engineers. 2slides - An MCP server that provides tools to convert content into slides/PPT/presentation or generate slides/PPT/presentation with user intention. ActionKit by Paragon - Connect to 130+ SaaS inte

      GitHub - modelcontextprotocol/servers: Model Context Protocol Servers
    • Rust for AWS Lambda, the Docker Way

      Contents Introduction The Rust Code Cargo Lambda The Dockerfile Configurable Dockerfile Bonus Tips Final Words Introduction Rust is a great language to consider when writing services for AWS Lambda, because of its extremely low start-up time, CPU usage and memory footprint. These are all important metrics to consider in serverless infrastructure and they translate to direct cost savings and better

        Rust for AWS Lambda, the Docker Way
      • 【新機能】AWS Amplify CLIで作成するAWS Lambda Functionで環境変数の設定とシークレット値へのアクセスが可能になりました | DevelopersIO

        はじめに おはようございます、加藤です。本日、Amplify CLIから管理下のLambda関数に環境変数を設定できる機能が追加されました? これによって、Amplify CLIを使う場合でも、バックエンドにおいて環境(dev, stg, prdなど)ごとの固有の設定を切り離して管理することができるようになりました。 また、Amplify CLIからAWS Systems Manager Paramater Storeにシークレットを保存し、環境変数にキーを保存することで、関数内からAWS SDK経由にシークレットを取得することも可能になりました。 AWS Amplify CLI adds support for storing environment variables and secrets accessed by AWS Lambda functions 環境の準備 Amplifyの

          【新機能】AWS Amplify CLIで作成するAWS Lambda Functionで環境変数の設定とシークレット値へのアクセスが可能になりました | DevelopersIO
        • AWS SAM CLI announces local testing and debugging support on Terraform projects - AWS

          AWS SAM CLI announces local testing and debugging support on Terraform projects The AWS Serverless Application Model (SAM) Command Line Interface (CLI) announces the launch of SAM CLI local testing and debugging on HashiCorp Terraform. The AWS SAM CLI is a developer tool that makes it easier to build, test, package, and deploy serverless applications. Terraform is an infrastructure as code tool th

            AWS SAM CLI announces local testing and debugging support on Terraform projects - AWS
          • AWS Lambda Now Supports Up to 10 GB Ephemeral Storage | Amazon Web Services

            AWS News Blog AWS Lambda Now Supports Up to 10 GB Ephemeral Storage Update July 12, 2022 – The Available Now section below has been edited for clarity to ensure the best experience for our readers. Serverless applications are event-driven, using ephemeral compute functions ranging from web APIs, mobile backends, and streaming analytics to data processing stages in machine learning (ML) and high-pe

              AWS Lambda Now Supports Up to 10 GB Ephemeral Storage | Amazon Web Services
            • Better together: AWS SAM CLI and HashiCorp Terraform | Amazon Web Services

              AWS Compute Blog Better together: AWS SAM CLI and HashiCorp Terraform This post is written by Suresh Poopandi, Senior Solutions Architect and Seb Kasprzak, Senior Solutions Architect. Today, AWS is announcing the public preview of AWS Serverless Application Model CLI (AWS SAM CLI) support for local development, testing, and debugging of serverless applications defined using HashiCorp Terraform con

                Better together: AWS SAM CLI and HashiCorp Terraform | Amazon Web Services
              • Lambda開発のためのVScode | DevelopersIO

                新卒研修中の森田です。 VScodeを使用してよくコードを書いていたので、LambdaもVScodeを使用して効率良く開発できないかなと思って軽い気持ちで始めたら、少し詰まったので共有します。 行いたいこと 前述した通り、VScodeを使用してLambdaの開発を行うことです。 本記事では、環境構築、ローカルでの実行、デプロイまでを行います! 環境構築 mac OS Catalina にて行います。 Pythonのインストール 今回Lambdaのランタイムは Python とするのでまずは、Pythonをインストールします。 私の場合、Jupyterもいずれ使用したいのでMinicondaを用いてPythonをインストールします。 以下よりインストーラーをダウンロードしてインストールします。 https://docs.conda.io/en/latest/miniconda.html ba

                  Lambda開発のためのVScode | DevelopersIO
                • 正式リリースになった AWS SAM CLI の Terraform サポート機能を試す - kakakakakku blog

                  2023年9月5日に AWS SAM CLI の Terraform サポート機能が GA (正式リリース)になった👏 Amazon API Gateway や AWS Lambda 関数などサーバーレス関連のコンポーネントは Terraform で統一的に管理しつつも,AWS SAM CLI の開発支援機能(sam local invoke コマンドや sam local start-api コマンドでローカルデバッグ)は使いたい❗️という場面はあって非常に便利な組み合わせだと思う. aws.amazon.com 実際にどういう開発体験なのかを確認するために AWS ブログに載っていたサンプルを試してみる \( 'ω')/ aws.amazon.com 検証環境 今回は macOS 上で SAM CLI 1.97.0(最新)と Terraform 1.5.7(最新)を使う. $ sam

                    正式リリースになった AWS SAM CLI の Terraform サポート機能を試す - kakakakakku blog
                  • AWS SAM support for HashiCorp Terraform now generally available | Amazon Web Services

                    AWS Compute Blog AWS SAM support for HashiCorp Terraform now generally available In November 2022, AWS announced the public preview of AWS Serverless Application Model (AWS SAM) support for HashiCorp Terraform. The public preview introduces a subset of features to help Terraform users test serverless applications locally. Today, AWS is announcing the general availability of Terraform support in AW

                      AWS SAM support for HashiCorp Terraform now generally available | Amazon Web Services
                    • 使い慣れたプログラミング言語でAWSのインフラ管理をする ~AWS CDKのススメ~ - ABEJA Tech Blog

                      1. AWS CDKとは 2. AWS CDKを触ってみる 2.1 環境構築 Volta Node.js CDK 2.2. とりあえずLambdaを作成するところまでやってみる 2.2.1. プロジェクト作成 2.2.2. デプロイ用のLambda関数を書く 2.2.3. CDKのStackにLambda関数を記載する 2.2.4. デプロイしてみる 2.2.5. お片付け 2.3. CRUDっぽいAPIをAPI Gatewayで公開してみる 2.3.1. Lambda関数を用意する 2.3.2. CDKを用意する 2.3.3. デプロイして動かしてみる 2.3.4. お片付け 2.3.5. 詰まったところ 3. 感想 We Are Hiring! ABEJAでプロダクト開発をしている平原です。ABEJAアドベントカレンダー2023の6日目の記事です。皆さんはAWSでIaCを利用する時には

                        使い慣れたプログラミング言語でAWSのインフラ管理をする ~AWS CDKのススメ~ - ABEJA Tech Blog
                      • Best Practices for Writing Step Functions Terraform Projects | Amazon Web Services

                        AWS DevOps & Developer Productivity Blog Best Practices for Writing Step Functions Terraform Projects Terraform by HashiCorp is one of the most popular infrastructure-as-code (IaC) platforms. AWS Step Functions is a visual workflow service that helps developers use AWS services to build distributed applications, automate processes, orchestrate microservices, and create data and machine learning (M

                          Best Practices for Writing Step Functions Terraform Projects | Amazon Web Services
                        • Introducing Threatest, a CLI and Go framework for end-to-end testing of threat detection rules | Datadog Security Labs

                          Reliably detecting threats in an environment is critical for securing applications and infrastructure. But the increasing complexity of modern data pipelines makes it difficult to verify that detection rules are consistently able to spot the threats they are designed to look for. Today, we are happy to announce the release of a new open source project: Threatest, a CLI and Go framework for end-to-

                            Introducing Threatest, a CLI and Go framework for end-to-end testing of threat detection rules | Datadog Security Labs
                          • Serverless ICYMI Q4 2023 | Amazon Web Services

                            AWS Compute Blog Serverless ICYMI Q4 2023 Welcome to the 24th edition of the AWS Serverless ICYMI (in case you missed it) quarterly recap. Every quarter, we share all the most recent product launches, feature enhancements, blog posts, webinars, live streams, and other interesting things that you might have missed! In case you missed our last ICYMI, check out what happened last quarter here. Server

                            • Mocking service integrations with AWS Step Functions Local | Amazon Web Services

                              AWS Compute Blog Mocking service integrations with AWS Step Functions Local This post is written by Sam Dengler, Principal Specialist Solutions Architect, and Dhiraj Mahapatro, Senior Specialist Solutions Architect. AWS Step Functions now supports over 200 AWS Service integrations via AWS SDK Integration. Developers want to build and test control flow logic for workflows using branching logic, err

                                Mocking service integrations with AWS Step Functions Local | Amazon Web Services
                              • Orchestrating high performance computing with AWS Step Functions and AWS Batch | Amazon Web Services

                                AWS Compute Blog Orchestrating high performance computing with AWS Step Functions and AWS Batch This post is written by Dan Fox, Principal Specialist Solutions Architect; Sabha Parameswaran, Senior Solutions Architect. High performance computing (HPC) workloads address challenges in a wide variety of industries, including genomics, financial services, oil and gas, weather modeling, and semiconduct

                                  Orchestrating high performance computing with AWS Step Functions and AWS Batch | Amazon Web Services
                                • Automate AWS Lambda Runtime Upgrades with AWS Transform custom | Amazon Web Services

                                  AWS DevOps & Developer Productivity Blog Automate AWS Lambda Runtime Upgrades with AWS Transform custom Introduction Organizations carry a growing burden of technical debt — aging codebases, outdated runtimes, and legacy frameworks that slow innovation, increase security risk, and inflate maintenance costs. Addressing this debt requires tackling a wide range of code transformation challenges: vers

                                    Automate AWS Lambda Runtime Upgrades with AWS Transform custom | Amazon Web Services
                                  1