

本文属于机器翻译版本。若本译文内容与英语原文存在差异，则一律以英文原文为准。

# Bedrock 数据自动化功能需要跨区域支持


BDA 要求用户在处理文件时使用跨区域推理支持。通过跨区域推理，Amazon Bedrock 数据自动化功能将自动选择您所在地理位置内的最佳区域（如下表所示）来处理您的推理请求，最大限度地提高可用计算资源和模型可用性，并提供最佳客户体验。使用跨区域推理不会产生额外成本。跨区域推理请求保留在属于数据原始所在地理位置的 AWS 区域内。例如，在美国境内发出的请求将保留在美国境内的 AWS 区域内。尽管数据仍然只存储在源区域中，但在使用跨区域推理时，您的请求和输出结果可能会传出主区域。所有数据都将通过 Amazon 的安全网络加密传输。

下表包括不同推理配置文件的 ARN。将账户 ID 替换为您正在使用的账户 ID。


| 源区域 | Amazon 资源名称 (ARN) | 支持的区域 | 
| --- | --- | --- | 
|  美国东部（弗吉尼亚州北部）  |  arn:aws:bedrock:us-east-1:*account id*:data-automation-profile/us.data-automation-v1  |  us-east-1 us-east-2 us-west-1 us-west-2  | 
|  美国西部（俄勒冈州）  |  arn:aws:bedrock:us-west-2:*account id*:data-automation-profile/us.data-automation-v1  |  us-east-1 us-east-2 us-west-1 us-west-2  | 
|  欧洲地区（法兰克福）  |  arn:aws:bedrock:eu-central-1:*account id*:data-automation-profile/eu.data-automation-v1  |  eu-central-1 eu-north-1 eu-south-1 eu-south-2 eu-west-1 eu-west-3  | 
|  欧洲地区（爱尔兰）  |  arn:aws:bedrock:eu-west-1:*account id*:data-automation-profile/eu.data-automation-v1  |  eu-central-1 eu-north-1 eu-south-1 eu-south-2 eu-west-1 eu-west-3  | 
|  欧洲地区（伦敦）  |  arn:aws:bedrock:eu-west-2:*account id*:data-automation-profile/eu.data-automation-v1  |  eu-west-2  | 
|  亚太地区（孟买）  |  arn:aws:bedrock:ap-south-1:*account id*:data-automation-profile/apac.data-automation-v1  |  ap-northeast-1 ap-northeast-2 ap-northeast-3 ap-south-1 ap-south-2 ap-southeast-1 ap-southeast-2 ap-southeast-4  | 
|  亚太地区（悉尼）  |  arn:aws:bedrock:ap-southeast-2:*account id*:data-automation-profile/apac.data-automation-v1  |  ap-northeast-1 ap-northeast-2 ap-northeast-3 ap-south-1 ap-south-2 ap-southeast-1 ap-southeast-2 ap-southeast-4  | 
|  AWS GovCloud（美国西部）  |  arn:aws:bedrock:gov-cloud:*account id*:data-automation-profile/us-gov.data-automation-v1  |  us-gov-west-1  | 

以下是为 `us-east-1` 或 `us-west-2` 启用了 CRIS 时，用于处理文档的 IAM 策略示例。

```
{"Effect": "Allow",
 "Action": ["bedrock:InvokeDataAutomationAsync"],
 "Resource": [
  "arn:aws:bedrock:us-east-1:account_id:data-automation-profile/us.data-automation-v1",
  "arn:aws:bedrock:us-east-2:account_id:data-automation-profile/us.data-automation-v1",
  "arn:aws:bedrock:us-west-1:account_id:data-automation-profile/us.data-automation-v1",
  "arn:aws:bedrock:us-west-2:account_id:data-automation-profile/us.data-automation-v1"]}
```