- はじめに
- エージェント
- インテグレーション
- Watchdog
- イベント
- ダッシュボード
- モバイルアプリケーション
- インフラストラクチャー
- サーバーレス
- メトリクス
- ノートブック
- アラート設定
- APM & Continuous Profiler
- CI Visibility
- RUM & セッションリプレイ
- データベース モニタリング
- ログ管理
- セキュリティプラットフォーム
- Synthetic モニタリング
- ネットワークモニタリング
- 開発者
- API
- アカウントの管理
- データセキュリティ
- ヘルプ
Classification:
compliance
Configure your Amazon Lambda Function to have access to VPC-only resources.
By default, Amazon Lambda functions run in a secure VPC with access to any AWS service and the internet. Selecting which resources have access secures the connections within your private VPC.
Follow the Configuring VPC access (console) docs to configure VPC access for an existing function.
Run update-function-configuration
with your Amazon Lambda function name and VPC configuration. Set network connectivity to AWS resources within the configured VPC.
update-function-configuration.sh
aws lambda update-function-configuration
--function-name your-lambda-function-name
--vpc-config SubnetIds="subnet-ab12cd34","subnet-12345678",SecurityGroupIds="id-0abcd1234abcd5678"