

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# Bedrock Data Automation に必要なクロスリージョンサポート
<a name="bda-cris"></a>

BDA では、ファイルを処理する際にクロスリージョン推論サポートを使用する必要があります。クロスリージョン推論により、Amazon Bedrock Data Automation は、地理的に最適なリージョン (下記の表を参照) を自動的に選択して推論リクエストを処理し、利用可能なコンピューティングリソースとモデルの可用性を最大化して、最高レベルのカスタマーエクスペリエンスを提供できるようになります。クロスリージョン推論の使用に追加コストはかかりません。クロスリージョン推論リクエストは、データが最初に存在していた地域に属する 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"]}
```