Kiến thức cần nắm:
Giải thích chi tiết:
Integration Patterns cho GenAI trong Enterprise:
┌─────────────────────────────────────────────┐
│ Enterprise Systems │
├──────────┬──────────┬──────────┬────────────┤
│ CRM │ ERP │ Legacy │ Data Lake │
└────┬─────┴────┬─────┴────┬─────┴─────┬──────┘
│ │ │ │
▼ ▼ ▼ ▼
┌─────────────────────────────────────────────┐
│ Integration Layer │
│ API Gateway │ EventBridge │ AppSync │
└────────────────────┬────────────────────────┘
▼
┌─────────────────────────────────────────────┐
│ GenAI Services │
│ Bedrock │ SageMaker │ Knowledge Bases │
└─────────────────────────────────────────────┘
Patterns:
Kiến thức cần nắm:
Giải thích chi tiết:
Microservice Integration Pattern:
Webhook Pattern:
Kiến thức cần nắm:
Giải thích chi tiết:
Security Layers cho GenAI:
| Layer | Service | Mục đích |
|---|---|---|
| Authentication | Amazon Cognito, IAM Identity Center | Xác thực user identity |
| Authorization | IAM Policies, Resource Policies | Kiểm soát quyền truy cập |
| API Security | API Gateway, WAF | Rate limiting, input validation |
| Data Security | KMS, VPC Endpoints | Mã hóa data in transit/at rest |
| Audit | CloudTrail, CloudWatch | Logging và monitoring |
Least Privilege cho Bedrock:
{
"Effect": "Allow",
"Action": [
"bedrock:InvokeModel"
],
"Resource": [
"arn:aws:bedrock:*::foundation-model/anthropic.claude-3-sonnet*"
]
}
Kiến thức cần nắm:
Giải thích chi tiết:
Hybrid Architecture cho GenAI:
Kiến thức cần nắm:
Giải thích chi tiết:
GenAI Gateway Pattern:
Applications → GenAI Gateway → Model Providers
│
├── Rate limiting
├── Cost tracking
├── Model routing
├── Caching
├── Logging/Monitoring
└── Security controls
CI/CD cho GenAI Applications:
Exam Tip: GenAI gateway pattern là best practice cho enterprise. Nó cung cấp centralized control, observability, và security cho tất cả GenAI interactions.