Skip to content

AWS Integration

Garot Conklin edited this page Apr 29, 2025 · 1 revision

AWS Integration Guide

Core Services

Required Services

  • AWS Lambda
  • Amazon Bedrock
  • CloudWatch
  • EventBridge
  • DynamoDB
  • Systems Manager

Optional Services

  • Amazon Q (future)
  • AWS Config
  • AWS Organizations

IAM Configuration

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "bedrock:InvokeModel",
        "lambda:InvokeFunction",
        "cloudwatch:PutMetricData"
      ],
      "Resource": "*"
    }
  ]
}

VPC Configuration

  • Private subnets
  • VPC endpoints
  • Security groups

Cost Optimization

  • Lambda concurrency limits
  • Bedrock usage monitoring
  • CloudWatch retention periods
Clone this wiki locally